Home
last modified time | relevance | path

Searched refs:test_function (Results 1 – 25 of 46) sorted by relevance

12

/llvm-project/bolt/test/runtime/X86/
H A Dfix-branches-jrcxz.s22 jmp test_function
24 .globl test_function symbol
25 .hidden test_function
26 .type test_function,@function
28 test_function: label
29 # FDATA: 0 main 0 1 test_function 0 0 510
44 # FDATA: 1 test_function #.J1# 1 test_function #.BB2# 0 10
45 # FDATA: 1 test_function #.J1# 1 test_function #.BBend# 0 500
/llvm-project/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
H A Dfunction.pass.cpp30 void test_function() in test_function() function
40 test_function<void ()>(); in main()
41 test_function<void (int)>(); in main()
42 test_function<int (double)>(); in main()
43 test_function<int (double, char)>(); in main()
/llvm-project/llvm/test/Transforms/Inline/
H A Dexternally_available.ll3 define available_externally i32 @test_function() {
4 ; CHECK-NOT: @test_function
13 %A = call i32 @test_function()
15 ; CHECK-NOT: @test_function
23 ; CHECK-NOT: @test_function
/llvm-project/compiler-rt/test/asan/TestCases/Windows/
H A Dshadow_conflict_32.cpp16 extern "C" __declspec(dllimport) int test_function();
20 (void *)&test_function); in main()
24 extern "C" __declspec(dllexport) int test_function() { return 0; } in test_function() function
H A Ddll_host.cpp39 typedef int (*test_function)(); in main() typedef
40 test_function gf = (test_function)GetProcAddress(h, "test_function"); in main()
H A Ddll_operator_array_new_left_oob.cpp6 int test_function() { in test_function() function
H A Ddll_intercept_memchr.cpp14 int test_function() { in test_function() function
H A Ddll_global_dead_strip.c16 int test_function() { in test_function() function
H A Ddll_malloc_uaf.cpp8 int test_function() { in test_function() function
H A Ddll_malloc_left_oob.cpp7 int test_function() { in test_function() function
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-nullptr-c23.c41 void test_function(int *p) {} in test_function() function
46 test_function(0); in test_function_call()
50 test_function(NULL); in test_function_call()
H A Duse-nullptr-basic.cpp151 void test_function(int *p) {} in test_function() function
156 test_function(0); in test_function_call()
160 test_function(NULL); in test_function_call()
164 test_function(g_null); in test_function_call()
/llvm-project/llvm/test/Transforms/GlobalDCE/
H A Dexternally_available.ll11 ; test_function should not be emitted to the .s file.
12 ; CHECK-NOT: define {{.*}} @test_function()
13 define available_externally i32 @test_function() {
/llvm-project/llvm/test/CodeGen/X86/
H A Dmisched-code-difference-with-debug.ll28 declare i32 @test_function(ptr, i8 signext, i8 signext, i8 signext, ...)
38 …%call = call i32 (ptr, i8, i8, i8, ...) @test_function(ptr %c, i8 signext 0, i8 signext %0, i8 sig…
40 …%call2 = call i32 (ptr, i8, i8, i8, ...) @test_function(ptr %c, i8 signext 0, i8 signext %1, i8 si…
54 …%call = call i32 (ptr, i8, i8, i8, ...) @test_function(ptr %c, i8 signext 0, i8 signext %0, i8 sig…
57 …%call2 = call i32 (ptr, i8, i8, i8, ...) @test_function(ptr %c, i8 signext 0, i8 signext %1, i8 si…
/llvm-project/llvm/test/MC/ARM/
H A Dtype-directive-print.ll4 module asm ".type test_function, %function"
12 ; CHECK: .type test_function,%function
/llvm-project/libcxx/test/std/utilities/function.objects/refwrap/refwrap.assign/
H A Dcopy_assign.pass.cpp45 test_function() in test_function() function
57 test_function(); in main()
/llvm-project/mlir/test/Dialect/Bufferization/Transforms/
H A Dtransform-ops.mlir13 // CHECK-LABEL: func @test_function(
15 func.func @test_function(%A : tensor<?xf32>, %v : vector<4xf32>) -> (tensor<?xf32>) {
42 // CHECK-LABEL: func @test_function(
45 func.func @test_function(%A : tensor<?xf32>, %v : vector<4xf32>) -> (tensor<?xf32>) {
115 // CHECK-LABEL: func @test_function(
117 func.func @test_function(%A : tensor<?xf32>, %v : vector<4xf32>) -> (tensor<?xf32>) {
/llvm-project/llvm/test/CodeGen/Generic/
H A Dexternally_available.ll12 ; test_function should not be emitted to the .s file.
13 define available_externally i32 @test_function() {
/llvm-project/clang/test/SemaCXX/Inputs/
H A Dsource-location-file.h12 constexpr SL test_function(SL v = SL::current()) {
17 return test_function(); in test_function_indirect()
/llvm-project/lldb/examples/customization/import-python/
H A DREADME24 (lldb) script demo.test_function('hello world')
36 (lldb) script demo.test_function('hello world')
/llvm-project/clang/test/CodeGenOpenCL/
H A Dkernels-have-spir-cc-by-default.cl59 void test_function(int_pair input, global int* output) {
61 // AMDGCN-NOT: define{{.*}} amdgpu_kernel void @test_function
/llvm-project/llvm/test/Transforms/LoopRotate/
H A Dpr51981-scev-problem.ll19 ; CHECK-SCEV: Classifying expressions for: @test_function
27 ; CHECK-SCEV: Classifying expressions for: @test_function
41 define void @test_function(i1 %cond) {
/llvm-project/clang/test/CodeGen/
H A Dmsp430-register-names.c8 void test_function(void) { in test_function() function
/llvm-project/compiler-rt/test/asan/TestCases/Windows/msvc/
H A Dcoverage-dll-stdio.cpp12 int test_function() { in test_function() function
H A Ddll_cerr.cpp12 int test_function() { in test_function() function

12