Home
last modified time | relevance | path

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

12345

/external/llvm-project/libclc/generic/lib/math/
Dhalf_recip.cl3 #define recip(x) (1.0f/x)
5 #define __CLC_FUNC recip
10 #undef recip
/external/libwebsockets/minimal-examples/abstract/protocols/smtp-client/
Dmain.c15 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/
Dfdiv-combine.ll8 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dfdiv-combine.ll8 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
/external/rust/crates/ring/src/ec/curve25519/
Dops.rs128 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/
Dpowisf2.c18 const int recip = b < 0; in __powisf2() local
28 return recip ? 1 / r : r; in __powisf2()
Dpowidf2.c18 const int recip = b < 0; in __powidf2() local
28 return recip ? 1 / r : r; in __powidf2()
Dpowixf2.c20 const int recip = b < 0; in __powixf2() local
30 return recip ? 1 / r : r; in __powixf2()
Dpowitf2.c21 const int recip = b < 0; in __powitf2() local
31 return recip ? 1 / r : r; in __powitf2()
/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()
Dpowitf2.c24 const int recip = b < 0; in __powitf2() local
35 return recip ? 1/r : r; in __powitf2()
Dpowixf2.c24 const int recip = b < 0; in __powixf2() local
35 return recip ? 1/r : r; in __powixf2()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Druntime_pow.cc22 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/
DDriveControl.h33 std::for_each(beg, end, [this](auto &x){x *= recip;}); in operator()
39 const double recip = 1 / kScale; variable
/external/llvm/test/CodeGen/AArch64/
Dfdiv-combine.ll6 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
Drecp-fastmath.ll1 ; 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/
Dfdiv-combine.ll6 ; recip = 1.0 / D; a * recip; b * recip; c * recip;
/external/llvm/test/CodeGen/X86/
Drecip-fastmath.ll1 ; 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 …
Dsse-scalar-fp-arith-unary.ll10 define <4 x float> @recip(<4 x float> %x) {
11 ; SSE-LABEL: recip:
16 ; AVX-LABEL: recip:
/external/rust/crates/num-traits/src/
Dreal.rs243 fn recip(self) -> Self; in recip() method
800 Float::recip(self) -> Self;
Dfloat.rs652 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/
Dsse-scalar-fp-arith-unary.ll15 define <4 x float> @recip(<4 x float> %x) {
16 ; SSE-LABEL: recip:
21 ; AVX-LABEL: recip:
/external/llvm-project/libclc/amdgpu/lib/math/
Dhalf_recip.cl3 #define __CLC_FUNC recip
/external/libjpeg-turbo/
Djcdctmgr.c416 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()

12345