Home
last modified time | relevance | path

Searched refs:recip (Results 1 – 21 of 21) sorted by relevance

/external/llvm/test/CodeGen/PowerPC/
Dfdiv-combine.ll8 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
/external/compiler-rt/lib/builtins/
Dpowisf2.c22 const int recip = b < 0; in __powisf2() local
33 return recip ? 1/r : r; in __powisf2()
Dpowidf2.c22 const int recip = b < 0; in __powidf2() local
33 return recip ? 1/r : r; in __powidf2()
Dpowixf2.c24 const int recip = b < 0; in __powixf2() local
35 return recip ? 1/r : r; in __powixf2()
Dpowitf2.c24 const int recip = b < 0; in __powitf2() local
35 return recip ? 1/r : r; in __powitf2()
/external/llvm/test/CodeGen/AArch64/
Dfdiv-combine.ll6 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
/external/llvm/test/CodeGen/X86/
Drecip-fastmath.ll2 ; 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/
DFastMath.java214 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/
Dvalid-xfail-mips4.txt39 0x46 0x20 0x34 0xd5 # CHECK: recip.d $f19, $f6
40 0x46 0x00 0xf0 0xd5 # CHECK: recip.s $f3, $f30
/external/openssh/
Dsmult_curve25519_ref.c180 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/
Dvalid-xfail-mips64r2.txt70 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/
Dvalid-xfail-mips64r5.txt70 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/
Dvalid-xfail-mips64r3.txt70 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/
Dvalid-mips64-xfail.txt76 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/
Dvalid-xfail-mips32r5.txt73 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/
Dvalid-xfail-mips32r3.txt73 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/
Dvalid-xfail-mips32r2.txt73 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/
Dtgsi_exec.c928 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/
Dfx_png.c2658 int recip = 0;
2667 recip = 1, power = -power;
2682 if (recip) d = 1/d;
/external/libpng/
Dpng.c2751 int recip = 0;
2760 recip = 1, power = -power;
2775 if (recip) d = 1/d;
/external/llvm/lib/Target/X86/
DX86.td193 def FeatureUseRecipEst : SubtargetFeature<"use-recip-est", "UseReciprocalEst",