Searched refs:a_function (Results 1 – 13 of 13) sorted by relevance
/llvm-project/lldb/test/API/functionalities/load_unload/ |
H A D | main.cpp | 12 int (*a_function)(void); in main() local 20 a_function = (int (*)())dylib_get_symbol(a_dylib_handle, "a_function"); in main() 21 if (a_function == NULL) { in main() 25 printf("First time around, got: %d\n", a_function()); in main() 33 a_function = (int (*)())dylib_get_symbol(c_dylib_handle, "c_function"); in main() 34 if (a_function == NULL) { in main() 45 a_function = (int (*)())dylib_get_symbol(a_dylib_handle, "a_function"); in main() 46 if (a_function == NULL) { in main() 50 printf("Second time around, got: %d\n", a_function()); in main()
|
H A D | cmds.txt | 1 breakpoint set -n a_function
|
H A D | a.cpp | 11 a_function () in a_function() function
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_on_overload/ |
H A D | main.cpp | 1 int a_function(int x) { in a_function() function 5 int a_function(double x) { in a_function() function 9 int a_function(double x, int y) { in a_function() function 13 int a_function(int x, double y) { in a_function() function 23 int result = a_function(int_val); in main() 24 result += a_function(double_val); in main() 25 result += a_function(double_val, int_val); in main() 26 result += a_function(int_val, double_val); in main()
|
/llvm-project/llvm/test/CodeGen/AMDGPU/ |
H A D | s_code_end.ll | 35 ; GCN-ASM: .globl a_function 37 ; GCN-ASM-NEXT: .type a_function,@function 39 ; GCN-NEXT: a_function{{>?}}: 42 ; GCN-ASM-NEXT: .size a_function, [[END_LABEL3]]-a_function 65 define void @a_function() #0 {
|
/llvm-project/lldb/test/API/commands/target/create-deps/ |
H A D | main.cpp | 1 extern int a_function (); 7 return a_function(); in main()
|
H A D | a.cpp | 1 int a_function () in a_function() function
|
/llvm-project/lldb/test/API/functionalities/target-new-solib-notifications/ |
H A D | main.cpp | 3 extern "C" int a_function(); 9 a_function(); in main()
|
H A D | a.cpp | 3 extern "C" int a_function() { return b_function(); } in a_function() function
|
/llvm-project/lldb/test/API/macosx/function-starts/ |
H A D | main.cpp | 13 static void *a_function() in a_function() function 30 a_function(); in main()
|
/llvm-project/lldb/test/API/tools/lldb-dap/evaluate/ |
H A D | main.cpp | 11 int a_function(int list) { in a_function() 31 a_function(var3); in main() 10 int a_function(int var) { a_function() function
|
/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/ |
H A D | p5.cpp | 492 auto a_function(Ts... ts) -> decltype(var_expr(ts...)); 495 using partial = decltype(a_function<int, T>);
|
/llvm-project/clang/test/CodeGenOpenCL/ |
H A D | amdgpu-attrs.cl | 182 void a_function() { 183 // CHECK: define{{.*}} void @a_function() [[A_FUNCTION:#[0-9]+]]
|