/external/llvm-project/libclc/generic/lib/math/ |
D | half_recip.cl | 3 #define recip(x) (1.0f/x) 5 #define __CLC_FUNC recip 10 #undef recip
|
/external/libwebsockets/minimal-examples/abstract/protocols/smtp-client/ |
D | main.c | 15 static const char *recip; variable 68 recip = p; in main() 107 "\r\n.\r\n", recip); in main() 110 "andy@warmcat.com", recip, NULL, done_cb)) { in main()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | fdiv-combine.ll | 8 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
|
/external/llvm-project/llvm/test/CodeGen/PowerPC/ |
D | fdiv-combine.ll | 8 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
|
/external/rust/crates/ring/src/ec/curve25519/ |
D | ops.rs | 128 let mut recip = Elem::zero(); in encode_point() localVariable 129 GFp_x25519_fe_invert(&mut recip, &z); in encode_point() 132 GFp_x25519_fe_mul_ttt(&mut x_over_z, &x, &recip); in encode_point() 135 GFp_x25519_fe_mul_ttt(&mut y_over_z, &y, &recip); in encode_point()
|
/external/llvm-project/compiler-rt/lib/builtins/ |
D | powisf2.c | 18 const int recip = b < 0; in __powisf2() local 28 return recip ? 1 / r : r; in __powisf2()
|
D | powidf2.c | 18 const int recip = b < 0; in __powidf2() local 28 return recip ? 1 / r : r; in __powidf2()
|
D | powixf2.c | 20 const int recip = b < 0; in __powixf2() local 30 return recip ? 1 / r : r; in __powixf2()
|
D | powitf2.c | 21 const int recip = b < 0; in __powitf2() local 31 return recip ? 1 / r : r; in __powitf2()
|
/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 | powitf2.c | 24 const int recip = b < 0; in __powitf2() local 35 return recip ? 1/r : r; in __powitf2()
|
D | powixf2.c | 24 const int recip = b < 0; in __powixf2() local 35 return recip ? 1/r : r; in __powixf2()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | runtime_pow.cc | 22 const bool recip = b < 0; in Powi() local 30 return recip ? 1 / r : r; in Powi()
|
/external/oboe/apps/fxlab/app/src/main/cpp/effects/ |
D | DriveControl.h | 33 std::for_each(beg, end, [this](auto &x){x *= recip;}); in operator() 39 const double recip = 1 / kScale; variable
|
/external/llvm/test/CodeGen/AArch64/ |
D | fdiv-combine.ll | 6 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
|
D | recp-fastmath.ll | 1 ; RUN: llc < %s -mtriple=aarch64 -mattr=neon -recip=!div,!vec-div | FileCheck %s --check-prefix=FAU… 2 ; RUN: llc < %s -mtriple=aarch64 -mattr=neon -recip=div,vec-div | FileCheck %s
|
/external/llvm-project/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 | 1 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=sse2 -recip=!divf,!vec-divf | FileCheck %s -… 2 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx -recip=divf,vec-divf | FileCheck %s --ch… 3 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx -recip=divf:2,vec-divf:2 | FileCheck %s …
|
D | sse-scalar-fp-arith-unary.ll | 10 define <4 x float> @recip(<4 x float> %x) { 11 ; SSE-LABEL: recip: 16 ; AVX-LABEL: recip:
|
/external/rust/crates/num-traits/src/ |
D | real.rs | 243 fn recip(self) -> Self; in recip() method 800 Float::recip(self) -> Self;
|
D | float.rs | 652 fn recip(self) -> Self { in recip() method 679 self = self.recip(); in powi() 816 Self::recip(self) -> Self; 891 Self::recip(self) -> Self; 1277 fn recip(self) -> Self; in recip() method 1853 Self::recip(self) -> Self; 1928 FloatCore::recip(self) -> Self;
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | sse-scalar-fp-arith-unary.ll | 15 define <4 x float> @recip(<4 x float> %x) { 16 ; SSE-LABEL: recip: 21 ; AVX-LABEL: recip:
|
/external/llvm-project/libclc/amdgpu/lib/math/ |
D | half_recip.cl | 3 #define __CLC_FUNC recip
|
/external/libjpeg-turbo/ |
D | jcdctmgr.c | 416 UDCTELEM recip, corr; in quantize() local 422 recip = divisors[i + DCTSIZE2 * 0]; in quantize() 428 product = (UDCTELEM2)(temp + corr) * recip; in quantize() 433 product = (UDCTELEM2)(temp + corr) * recip; in quantize()
|