Home
last modified time | relevance | path

Searched refs:target_func (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/llvm/test/CodeGen/AArch64/
Dcfguard-checks.ll7 declare i32 @target_func()
14 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
20 ; CHECK: adrp x8, target_func
21 ; CHECK: add x8, x8, target_func
32 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
41 ; CHECK: adrp x8, target_func
42 ; CHECK: add x8, x8, target_func
55 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
64 ; CHECK: adrp x8, target_func
65 ; CHECK: add x8, x8, target_func
[all …]
Dcfguard-module-flag.ll9 declare void @target_func()
14 store void ()* @target_func, void ()** %func_ptr, align 8
/external/llvm-project/llvm/test/CodeGen/ARM/
Dcfguard-checks.ll7 declare i32 @target_func()
14 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
20 ; CHECK: movw r0, :lower16:target_func
21 ; CHECK: movt r0, :upper16:target_func
33 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
40 ; CHECK: movw r0, :lower16:target_func
41 ; CHECK: movt r0, :upper16:target_func
58 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
68 ; CHECK: movw r4, :lower16:target_func
69 ; CHECK: movt r4, :upper16:target_func
[all …]
Dcfguard-module-flag.ll9 declare void @target_func()
14 store void ()* @target_func, void ()** %func_ptr, align 8
/external/libaom/libaom/test/
Dcorner_match_test.cc46 ComputeCrossCorrFunc target_func; member in test_libaom::AV1CornerMatch::AV1CornerMatchTest
54 target_func = GET_PARAM(1); in SetUp()
94 double res_simd = target_func(input1, w, x1, y1, input2, w, x2, y2); in RunCheckOutput()
107 target_func(input1, w, x1, y1, input2, w, x2, y2); in RunCheckOutput()
Dav1_fwd_txfm2d_test.cc237 void AV1FwdTxfm2dMatchTest(TX_SIZE tx_size, lowbd_fwd_txfm_func target_func) { in AV1FwdTxfm2dMatchTest() argument
276 target_func(input, output, input_stride, &param); in AV1FwdTxfm2dMatchTest()
292 void AV1FwdTxfm2dSpeedTest(TX_SIZE tx_size, lowbd_fwd_txfm_func target_func) { in AV1FwdTxfm2dSpeedTest() argument
338 target_func(input, output, input_stride, &param); in AV1FwdTxfm2dSpeedTest()
425 Highbd_fwd_txfm_func target_func) { in AV1HighbdFwdTxfm2dMatchTest() argument
466 target_func(input, output, input_stride, &param); in AV1HighbdFwdTxfm2dMatchTest()
484 Highbd_fwd_txfm_func target_func) { in AV1HighbdFwdTxfm2dSpeedTest() argument
531 target_func(input, output, input_stride, &param); in AV1HighbdFwdTxfm2dSpeedTest()
/external/llvm-project/llvm/test/CodeGen/X86/
Dcfguard-checks.ll8 declare i32 @target_func()
15 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
26 ; X64: leaq target_func(%rip), %rax
38 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
54 ; X64: leaq target_func(%rip), %rax
66 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
80 ; X64: leaq target_func(%rip), %rax
91 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
114 ; X64: leaq target_func(%rip), %rax
159 store i32 ()* @target_func, i32 ()** %func_ptr, align 8
[all …]
Dcfguard-module-flag.ll10 declare void @target_func()
15 store void ()* @target_func, void ()** %func_ptr, align 8
/external/llvm-project/clang/test/CodeGen/
Dguard_nocf.c3 void target_func();
4 void (*func_ptr)() = &target_func;
/external/llvm-project/clang/test/CodeGenCXX/
Dguard_nocf.cpp3 void target_func();
4 void (*func_ptr)() = &target_func;
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Dprepare_quantize.cc137 if (func.getName() == quant_specs_.target_func) { in IsLegalQuantSpecs()
148 if (func_name == quant_specs_.target_func) { in GetMinMaxValuesForArgument()
168 auto& target_func = quant_specs_.target_func; in SetInputNodesQuantizationParams() local
172 if (target_func != func_name && in SetInputNodesQuantizationParams()
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/
Dquantization_config.h35 std::string target_func = "main"; member