/external/llvm/test/CodeGen/PowerPC/ |
D | fdiv-combine.ll | 8 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
|
/external/compiler-rt/lib/builtins/ |
D | powisf2.c | 22 const int recip = b < 0; in __powisf2() local 33 return recip ? 1/r : r; in __powisf2()
|
D | powidf2.c | 22 const int recip = b < 0; in __powidf2() local 33 return recip ? 1/r : r; in __powidf2()
|
D | powixf2.c | 24 const int recip = b < 0; in __powixf2() local 35 return recip ? 1/r : r; in __powixf2()
|
D | powitf2.c | 24 const int recip = b < 0; in __powitf2() local 35 return recip ? 1/r : r; in __powitf2()
|
/external/llvm/test/CodeGen/AArch64/ |
D | fdiv-combine.ll | 6 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
|
/external/llvm/test/CodeGen/X86/ |
D | recip-fastmath.ll | 2 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx,use-recip-est | FileCheck %s --check-pre… 3 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx,use-recip-est -x86-recip-refinement-step…
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
D | FastMath.java | 214 double recip[] = new double[2]; 224 splitReciprocal(tmp, recip); in splitReciprocal() argument 225 EXP_INT_TABLE_A[750-i] = recip[0]; 226 EXP_INT_TABLE_B[750-i] = recip[1]; 311 double recip = 1.0/ya; in cosh() local 312 temp = recip * HEX_40000000; in cosh() 313 double recipa = recip + temp - temp; in cosh() 314 double recipb = recip - recipa; in cosh() 317 recipb += (1.0 - yaa*recipa - yaa*recipb - yab*recipa - yab*recipb) * recip; in cosh() 319 recipb += -yb * recip * recip; in cosh() [all …]
|
/external/llvm/test/MC/Disassembler/Mips/mips4/ |
D | valid-xfail-mips4.txt | 39 0x46 0x20 0x34 0xd5 # CHECK: recip.d $f19, $f6 40 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/openssh/ |
D | smult_curve25519_ref.c | 180 static void recip(unsigned int out[32],const unsigned int z[32]) in recip() function 260 recip(work + 32,work + 32); in crypto_scalarmult_curve25519()
|
/external/llvm/test/MC/Disassembler/Mips/mips64r2/ |
D | valid-xfail-mips64r2.txt | 70 0x46 0x20 0x34 0x95 # CHECK: recip.d $f18, $f6 71 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/llvm/test/MC/Disassembler/Mips/mips64r5/ |
D | valid-xfail-mips64r5.txt | 70 0x46 0x20 0x34 0x95 # CHECK: recip.d $f18, $f6 71 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/llvm/test/MC/Disassembler/Mips/mips64r3/ |
D | valid-xfail-mips64r3.txt | 70 0x46 0x20 0x34 0x95 # CHECK: recip.d $f18, $f6 71 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/llvm/test/MC/Disassembler/Mips/mips64/ |
D | valid-mips64-xfail.txt | 76 0x46 0x20 0x34 0xd5 # CHECK: recip.d $f19, $f6 77 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/llvm/test/MC/Disassembler/Mips/mips32r5/ |
D | valid-xfail-mips32r5.txt | 73 0x46 0x20 0x34 0x95 # CHECK: recip.d $f18, $f6 74 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/llvm/test/MC/Disassembler/Mips/mips32r3/ |
D | valid-xfail-mips32r3.txt | 73 0x46 0x20 0x34 0x95 # CHECK: recip.d $f18, $f6 74 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/llvm/test/MC/Disassembler/Mips/mips32r2/ |
D | valid-xfail-mips32r2.txt | 73 0x46 0x20 0x34 0x95 # CHECK: recip.d $f18, $f6 74 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_exec.c | 928 float recip = 1.0f / src->f[i]; in micro_rcc() local 930 if (recip > 0.0f) { in micro_rcc() 931 if (recip > 1.884467e+019f) { in micro_rcc() 934 else if (recip < 5.42101e-020f) { in micro_rcc() 938 dst->f[i] = recip; in micro_rcc() 942 if (recip < -1.884467e+019f) { in micro_rcc() 945 else if (recip > -5.42101e-020f) { in micro_rcc() 949 dst->f[i] = recip; in micro_rcc()
|
/external/pdfium/samples/fx_lpng/lpng_v163/ |
D | fx_png.c | 2658 int recip = 0; 2667 recip = 1, power = -power; 2682 if (recip) d = 1/d;
|
/external/libpng/ |
D | png.c | 2751 int recip = 0; 2760 recip = 1, power = -power; 2775 if (recip) d = 1/d;
|
/external/llvm/lib/Target/X86/ |
D | X86.td | 193 def FeatureUseRecipEst : SubtargetFeature<"use-recip-est", "UseReciprocalEst",
|