/minix/sys/external/bsd/compiler_rt/dist/test/profile/ |
H A 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
|
/minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/ |
H A 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);
|
H A D | mangle-extern-local.cpp | 22 extern int var2, func2(); in f2() 23 return var2 + func2(); in f2()
|
/minix/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/ |
H A 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()
|
/minix/external/bsd/llvm/dist/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.delete/ |
H A 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…
|
/minix/external/bsd/llvm/dist/clang/test/SemaCXX/ |
H A 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()
|
H A D | c99-variable-length-array.cpp | 155 void func2 () { in func2() function 159 void func2() { in func2() function 161 func2<int>(); in func2()
|
/minix/external/bsd/llvm/dist/llvm/test/MC/ARM/ |
H A D | eh-directive-pad-diagnostics.s | 29 .globl func2 31 .type func2,%function 33 func2: label
|
H A D | eh-directive-personality-diagnostics.s | 29 .globl func2 31 .type func2,%function 33 func2: label
|
H A D | eh-directive-section-multiple-func.s | 11 @ In this example, func1 and func2 should be defined in .TEST1 section. 12 @ It is incorrect if the func2 is in .text, .ARM.extab.TEST1, or 29 .globl func2 31 .type func2,%function 33 func2: label 120 @ CHECK: Name: func2
|
H A D | eh-directive-integrated-test.s | 67 .globl func2 69 .type func2,%function 70 func2: label 82 .size func2, .Ltmp2-func2
|
H A D | eh-directive-fnstart-diagnostics.s | 20 .globl func2 22 .type func2,%function 30 func2: label
|
H A D | eh-directive-cantunwind-diagnostics.s | 37 .globl func2 39 .type func2,%function 41 func2: label
|
H A D | eh-directive-save-diagnostics.s | 31 .globl func2 33 .type func2,%function 35 func2: label
|
H A D | eh-directive-vsave-diagnostics.s | 31 .globl func2 33 .type func2,%function 35 func2: label
|
H A D | eh-directive-text-section-multiple-func.s | 21 .globl func2 23 .type func2,%function 25 func2: label 78 @ CHECK: Name: func2
|
H A D | eh-directive-setfp-diagnostics.s | 29 .globl func2 31 .type func2,%function 33 func2: label
|
/minix/tests/lib/libc/net/ |
H A D | t_nsdispatch.sh | 38 func2: enter 41 func2: exit
|
/minix/external/bsd/llvm/dist/llvm/test/tools/llvm-cov/ |
H A D | showHighlightedRanges.cpp | 8 void func2(int x) { in func2() function 43 func2(9); in main()
|
/minix/external/bsd/llvm/dist/clang/test/Index/ |
H A D | complete-access-checks.cpp | 6 void func2(); 22 void func2();
|
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/X86/ |
H A D | 2010-01-05-ZExt-Shl.ll | 5 declare void @func2(i16 zeroext) 13 call void @func2(i16 zeroext %t4) nounwind
|
/minix/sys/external/bsd/compiler_rt/dist/test/Unit/ |
H A D | enable_execute_stack_test.c | 43 int func2() in func2() function 65 memcpy(execution_buffer, (void *)(uintptr_t)&func2, 128); in main()
|
/minix/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ |
H A D | enable_execute_stack_test.c | 43 int func2() in func2() function 65 memcpy(execution_buffer, (void *)(uintptr_t)&func2, 128); in main()
|
/minix/external/bsd/libc++/dist/libcxx/test/std/thread/futures/futures.tas/futures.task.members/ |
H A D | dtor.pass.cpp | 36 void func2(std::packaged_task<double(int, char)> p) in func2() function 60 std::thread(func2, std::move(p)).detach(); in main()
|
/minix/external/bsd/libc++/dist/libcxx/test/thread/futures/futures.tas/futures.task.members/ |
H A D | dtor.pass.cpp | 33 void func2(std::packaged_task<double(int, char)> p) in func2() function 57 std::thread(func2, std::move(p)).detach(); in main()
|