/external/libnetfilter_conntrack/src/expect/ |
D | compare.c | 15 const struct nf_expect *exp2, in exp_cmp() argument 18 const struct nf_expect *exp2, in exp_cmp() 22 int b = test_bit(attr, exp2->set); in exp_cmp() 25 return cmp(exp1, exp2, flags); in exp_cmp() 38 cmp_exp_master(const struct nf_expect *exp1, const struct nf_expect *exp2, in cmp_exp_master() argument 42 (struct nf_conntrack *)&exp2->master, flags); in cmp_exp_master() 46 cmp_exp_expected(const struct nf_expect *exp1, const struct nf_expect *exp2, in cmp_exp_expected() argument 50 (struct nf_conntrack *)&exp2->expected, flags); in cmp_exp_expected() 54 cmp_exp_mask(const struct nf_expect *exp1, const struct nf_expect *exp2, in cmp_exp_mask() argument 58 (struct nf_conntrack *)&exp2->mask, flags); in cmp_exp_mask() [all …]
|
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/ |
D | exp2.ll | 10 %exp2 = tail call double @exp2( double %tmp12 ) ; <double> [#uses=1] 11 ret double %exp2 26 %exp2 = tail call double @exp2( double %tmp12 ) ; <double> [#uses=1] 27 ret double %exp2 33 %exp2 = tail call double @exp2( double %tmp12 ) ; <double> [#uses=1] 34 ret double %exp2 37 declare double @exp2(double)
|
/external/llvm/test/Transforms/InstCombine/ |
D | exp2-1.ll | 1 ; Test that the exp2 library call simplifier works correctly. 9 declare double @exp2(double) 12 ; Check exp2(sitofp(x)) -> ldexp(1.0, sext(x)). 17 %ret = call double @exp2(double %conv) 25 %ret = call double @exp2(double %conv) 33 %ret = call double @exp2(double %conv) 46 ; Check exp2(uitofp(x)) -> ldexp(1.0, zext(x)). 51 %ret = call double @exp2(double %conv) 52 ; CHECK: call double @exp2 59 %ret = call double @exp2(double %conv) [all …]
|
D | exp2-2.ll | 1 ; Test that the exp2 library call simplifier works correctly. 7 declare float @exp2(double) 9 ; Check that exp2 functions with the wrong prototype aren't simplified. 14 %ret = call float @exp2(double %conv) 15 ; CHECK: call float @exp2(double %conv)
|
D | pow-exp.ll | 15 %call = call fast double @exp2(double %x) nounwind readnone 22 ; CHECK-NEXT: %exp2 = call fast double @exp2(double %mul) 23 ; CHECK-NEXT: ret double %exp2 47 declare double @exp2(double)
|
D | log-pow.ll | 37 %call2 = call fast double @exp2(double %x) 43 ; CHECK-NEXT: %call2 = call fast double @exp2(double %x) 48 %call2 = call double @exp2(double %x) 54 ; CHECK-NEXT: %call2 = call double @exp2(double %x) 59 declare double @exp2(double)
|
D | log-pow-nofastmath.ll | 17 %call2 = call double @exp2(double %x) 23 ; CHECK: %call2 = call double @exp2(double %x) 29 declare double @exp2(double)
|
/external/swiftshader/third_party/LLVM/test/CodeGen/XCore/ |
D | exp2.ll | 3 ; RUN: grep "bl exp2" %t1.s | count 2 4 declare double @llvm.exp2.f64(double) 7 %result = call double @llvm.exp2.f64(double %F) 11 declare float @llvm.exp2.f32(float) 14 %result = call float @llvm.exp2.f32(float %F)
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_cse_test.cc | 213 auto exp2 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 218 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2, exp3})); in TEST_F() 224 EXPECT_THAT(tuple, op::Tuple(exp1, exp2, exp3)); in TEST_F() 231 EXPECT_THAT(first_operand, ::testing::AnyOf(exp1, exp2, exp3)); in TEST_F() 246 auto exp2 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local 248 *exp2->mutable_shape()->mutable_layout() = LayoutUtil::MakeLayout({1, 0}); in TEST_F() 251 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2})); in TEST_F() 257 EXPECT_THAT(tuple, op::Tuple(exp1, exp2)); in TEST_F() 263 EXPECT_THAT(tuple, op::Tuple(exp1, exp2)); in TEST_F() 277 auto exp2 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | log2_not_readnone.ll | 3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared 7 declare double @exp2(double) 12 ; CHECK: bl exp2 13 %2 = call double @exp2(double 0.000000e+00)
|
D | vfloatintrinsics.ll | 44 ; CHECK: test_v2f32.exp2: 45 define %v2f32 @test_v2f32.exp2(%v2f32 %a) { 47 %1 = call %v2f32 @llvm.exp2.v2f32(%v2f32 %a) 117 declare %v2f32 @llvm.exp2.v2f32(%v2f32) #0 168 ; CHECK: test_v4f32.exp2: 169 define %v4f32 @test_v4f32.exp2(%v4f32 %a) { 171 %1 = call %v4f32 @llvm.exp2.v4f32(%v4f32 %a) 241 declare %v4f32 @llvm.exp2.v4f32(%v4f32) #0 292 ; CHECK: test_v2f64.exp2: 293 define %v2f64 @test_v2f64.exp2(%v2f64 %a) { [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | log2_not_readnone.ll | 3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared 7 declare double @exp2(double) 12 ; CHECK: calll exp2 13 %2 = call double @exp2(double 0.000000e+00)
|
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/ |
D | bind_return_type.pass.cpp | 68 Expect exp2 = ret(101, 102); in do_test() local 73 assert(exp2 == 42); in do_test() 79 assert(&exp2 == &dummy); in do_test() 107 Expect exp2 = ret(101, 102); in do_test_r() local 109 assert(exp2 == 42); in do_test_r()
|
/external/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/ |
D | exp2.glsl | 3 ; FUNC-LABEL: {{^}}@exp2: 9 #shader fs exp2 13 gl_FragColor.x = exp2(f);
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | llvm.exp2.ll | 16 %0 = call float @llvm.exp2.f32(float %in) 39 %0 = call <2 x float> @llvm.exp2.v2f32(<2 x float> %in) 73 %0 = call <4 x float> @llvm.exp2.v4f32(<4 x float> %in) 78 declare float @llvm.exp2.f32(float) readnone 79 declare <2 x float> @llvm.exp2.v2f32(<2 x float>) readnone 80 declare <4 x float> @llvm.exp2.v4f32(<4 x float>) readnone
|
/external/llvm/test/CodeGen/XCore/ |
D | float-intrinsics.ll | 4 declare double @llvm.exp2.f64(double) 45 define double @exp2(double %F) { 46 ; CHECK-LABEL: exp2: 47 ; CHECK: bl exp2 48 %result = call double @llvm.exp2.f64(double %F) 52 declare float @llvm.exp2.f32(float) 57 %result = call float @llvm.exp2.f32(float %F)
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-vfloatintrinsics.ll | 42 ; CHECK: test_v2f32.exp2: 43 define %v2f32 @test_v2f32.exp2(%v2f32 %a) { 45 %1 = call %v2f32 @llvm.exp2.v2f32(%v2f32 %a) 115 declare %v2f32 @llvm.exp2.v2f32(%v2f32) #0 166 ; CHECK: test_v4f32.exp2: 167 define %v4f32 @test_v4f32.exp2(%v4f32 %a) { 169 %1 = call %v4f32 @llvm.exp2.v4f32(%v4f32 %a) 239 declare %v4f32 @llvm.exp2.v4f32(%v4f32) #0 290 ; CHECK: test_v2f64.exp2: 291 define %v2f64 @test_v2f64.exp2(%v2f64 %a) { [all …]
|
D | illegal-float-ops.ll | 51 declare float @llvm.exp2.f32(float) 52 declare double @llvm.exp2.f64(double) 53 declare fp128 @llvm.exp2.f128(fp128) 58 %exp2float = call float @llvm.exp2.f32(float %float) 62 %exp2double = call double @llvm.exp2.f64(double %double) 64 ; CHECK: bl exp2 66 %exp2fp128 = call fp128 @llvm.exp2.f128(fp128 %fp128)
|
D | arm64-illegal-float-ops.ll | 51 declare float @llvm.exp2.f32(float) 52 declare double @llvm.exp2.f64(double) 53 declare fp128 @llvm.exp2.f128(fp128) 58 %exp2float = call float @llvm.exp2.f32(float %float) 62 %exp2double = call double @llvm.exp2.f64(double %double) 64 ; CHECK: bl exp2 66 %exp2fp128 = call fp128 @llvm.exp2.f128(fp128 %fp128)
|
/external/clang/test/CodeGen/ |
D | libcalls-d.c | 12 double exp2(double); 15 return exp2(x); in t4()
|
/external/libcxx/test/support/ |
D | hexfloat.h | 43 int exp2 = -static_cast<int>(Digits - CountLeadingZeros(m0)/4*4); in hexfloat() local 44 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), exp2), exp); in hexfloat()
|
/external/ltp/testcases/realtime/func/pi-tests/ |
D | parse-testpi1.py | 37 exp2= re.compile(r'^Noise Thread') 41 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
|
D | parse-testpi2.py | 38 exp2= re.compile(r'^Noise Thread') 44 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | f.cpp | 62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) in exp2() function 77 return exp2(x); in f()
|
/external/llvm/test/CodeGen/SystemZ/ |
D | fp-libcall.ll | 113 %tmp = call float @llvm.exp2.f32(float %x) 119 ; CHECK: brasl %r14, exp2@PLT 120 %tmp = call double @llvm.exp2.f64(double %x) 127 %tmp = call fp128 @llvm.exp2.f128(fp128 %x) 253 declare float @llvm.exp2.f32(float) 254 declare double @llvm.exp2.f64(double) 255 declare fp128 @llvm.exp2.f128(fp128)
|