/external/compiler-rt/test/profile/ |
D | instrprof-dlopen.test | 3 RUN: %clang_profgen -o %t.d/func2.shared -fPIC -shared %S/Inputs/instrprof-dlopen-func2.c 8 RUN: %clang_profgen -o %t-static %S/Inputs/instrprof-dlopen-func.c %S/Inputs/instrprof-dlopen-func2… 24 RUN: %clang_profuse=%t-static.profdata -o %t-func2.static.ll -S -emit-llvm %S/Inputs/instrprof-dlop… 25 RUN: %clang_profuse=%t-local.profdata -o %t-func2.local.ll -S -emit-llvm %S/Inputs/instrprof-dlopen… 26 RUN: %clang_profuse=%t-global.profdata -o %t-func2.global.ll -S -emit-llvm %S/Inputs/instrprof-dlop… 27 RUN: diff %t-func2.static.ll %t-func2.local.ll 28 RUN: diff %t-func2.static.ll %t-func2.global.ll
|
/external/compiler-rt/test/profile/Linux/ |
D | instrprof-dlopen.test | 3 …en -o %t.d/func2.shared -fPIC -shared -fdata-sections -ffunction-sections -fuse-ld=gold -Wl,--gc-s… 8 …-o %t-static %S/../Inputs/instrprof-dlopen-func.c %S/../Inputs/instrprof-dlopen-func2.c %t.d/main.o 24 …UN: %clang_profuse=%t-static.profdata -o %t-func2.static.ll -S -emit-llvm %S/../Inputs/instrprof-d… 25 RUN: %clang_profuse=%t-local.profdata -o %t-func2.local.ll -S -emit-llvm %S/../Inputs/instrprof-dlo… 26 …UN: %clang_profuse=%t-global.profdata -o %t-func2.global.ll -S -emit-llvm %S/../Inputs/instrprof-d… 27 RUN: diff %t-func2.static.ll %t-func2.local.ll 28 RUN: diff %t-func2.static.ll %t-func2.global.ll
|
/external/libvpx/libvpx/vpx_ports/ |
D | x86.h | 47 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 50 : "a"(func), "c"(func2)); 52 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 58 : "a"(func), "c"(func2)); 63 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 70 : "a"(func), "c"(func2)); 72 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 79 : "a"(func), "c"(func2)); 84 #define cpuid(func, func2, a, b, c, d) \ argument 87 __cpuidex(regs, func, func2); \ [all …]
|
/external/libaom/libaom/aom_ports/ |
D | x86.h | 48 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 51 : "a"(func), "c"(func2)); 53 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 59 : "a"(func), "c"(func2)); 64 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 71 : "a"(func), "c"(func2)); 73 #define cpuid(func, func2, ax, bx, cx, dx) \ argument 80 : "a"(func), "c"(func2)); 85 #define cpuid(func, func2, a, b, c, d) \ argument 88 __cpuidex(regs, func, func2); \ [all …]
|
/external/tensorflow/tensorflow/contrib/framework/python/ops/ |
D | arg_scope_test.py | 32 def func2(*args, **kwargs): function 103 key(func2): func2_kwargs.copy() 107 with arg_scope([func2], b=2, d=[2]) as scope: 127 key(func2): func2_kwargs.copy() 131 with arg_scope([func2], b=2, d=[2]) as scope2: 206 with arg_scope([func1, func2], a=1, b=None, c=[1]): 210 args, kwargs = func2(0) 217 with arg_scope((func1, func2), a=1, b=None, c=[1]): 221 args, kwargs = func2(0) 230 with arg_scope([func1, func2], a=1, b=None): [all …]
|
/external/clang/test/CodeGenCXX/ |
D | static-init-1.cpp | 7 int func2(int c) { return printf("loading the func2(%d)\n", c); }; in func2() function 13 int loader_2 = func2(++count); 20 int loader_4 = func2(++count); 22 int loader_6 = func2(++count);
|
D | optnone-and-attributes.cpp | 15 int func2(int a); 17 inline int func2(int a) { in func2() function 25 return val + func2(2); in foo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | comdat.ll | 7 ; CHECK: Name: func2 8 ; CHECK: Section: .text.func2 11 $func2 = comdat any 17 define amdgpu_kernel void @func2() local_unnamed_addr comdat {
|
/external/compiler-rt/test/profile/Inputs/ |
D | instrprof-dlopen-main.c | 9 void func2(int K); 35 void (*func2)(int) = (void (*)(int))dlsym(f2_handle, "func2"); in main() local 36 if (func2 == NULL) { in main() 43 func2(0); in main()
|
/external/llvm/test/Transforms/MergeFunc/ |
D | merge-weak-crash.ll | 4 ; CHECK: call i32 @func2 7 ; CHECK-LABEL: define i32 @func2 12 ; CHECK: call i32 @func2 36 %sum3 = call i32 @func2(i32 %sum, i32 %sum2) 40 define i32 @func2(i32 %x, i32 %y) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/MergeFunc/ |
D | merge-weak-crash.ll | 4 ; CHECK: call i32 @func2 7 ; CHECK-LABEL: define i32 @func2 12 ; CHECK: call i32 @func2 36 %sum3 = call i32 @func2(i32 %sum, i32 %sum2) 40 define i32 @func2(i32 %x, i32 %y) {
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.delete/ |
D | p4.cpp | 6 template<typename> void func2(); 7 template<> void func2<int>(); // expected-note {{previous declaration is here}} 8 template<> void func2<int>() = delete; // expected-error {{deleted definition must be first declara…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | dbg-range-extension.mir | 7 # int func2(int, int); 9 # int b = func2(10, 11); 11 # int c = func2(12, 13); 13 # func2(i, i+b); 15 # func2(b,c); 17 # func2(b,a); 67 %call = tail call i32 @func2(i32 10, i32 11) #0, !dbg !22 73 %call1 = tail call i32 @func2(i32 12, i32 13) #0, !dbg !26 85 %call3 = tail call i32 @func2(i32 %call, i32 %call1) #0, !dbg !34 90 %call2 = tail call i32 @func2(i32 %i.0, i32 %0) #0, !dbg !36 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/ |
D | eh-directive-section-multiple-func.s | 13 @ In this example, func1 and func2 should be defined in .TEST1 section. 14 @ It is incorrect if the func2 is in .text, .ARM.extab.TEST1, or 31 .globl func2 symbol 33 .type func2,%function 35 func2: label 130 @ CHECK: Name: func2
|
D | eh-directive-integrated-test.s | 67 .globl func2 symbol 69 .type func2,%function 70 func2: label 82 .size func2, .Ltmp2-func2
|
D | eh-directive-pad-diagnostics.s | 29 .globl func2 symbol 31 .type func2,%function 33 func2: label
|
D | eh-directive-personality-diagnostics.s | 29 .globl func2 symbol 31 .type func2,%function 33 func2: label
|
D | eh-directive-fnstart-diagnostics.s | 20 .globl func2 symbol 22 .type func2,%function 30 func2: label
|
/external/llvm/test/MC/ARM/ |
D | eh-directive-section-multiple-func.s | 13 @ In this example, func1 and func2 should be defined in .TEST1 section. 14 @ It is incorrect if the func2 is in .text, .ARM.extab.TEST1, or 31 .globl func2 symbol 33 .type func2,%function 35 func2: label 130 @ CHECK: Name: func2
|
D | eh-directive-integrated-test.s | 67 .globl func2 symbol 69 .type func2,%function 70 func2: label 82 .size func2, .Ltmp2-func2
|
D | eh-directive-pad-diagnostics.s | 29 .globl func2 symbol 31 .type func2,%function 33 func2: label
|
D | eh-directive-personality-diagnostics.s | 29 .globl func2 symbol 31 .type func2,%function 33 func2: label
|
D | eh-directive-fnstart-diagnostics.s | 20 .globl func2 symbol 22 .type func2,%function 30 func2: label
|
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/ |
D | reorder-functions.ll | 44 define internal void @func2() { 67 ; DEFAULTWINDOWSIZE-LABEL: func2 72 ; WINDOWSIZE1-LABEL: func2 79 ; SEQUENTIAL-LABEL: func2 88 ; WINDOWSIZEMAX-LABEL: func2
|
/external/clang/test/SemaCXX/ |
D | ambig-user-defined-conversions.cpp | 27 void func2(const char cc); // expected-note {{candidate function}} 28 void func2(const int ci); // expected-note {{candidate function}} 30 func2(b1); // expected-error {{call to 'func2' is ambiguous}} in Test2()
|