Home
last modified time | relevance | path

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

12345

/external/ComputeLibrary/src/core/NEON/
DNEMath.inl113 float32x2_t recip = vrecpe_f32(x); local
114 recip = vmul_f32(vrecps_f32(x, recip), recip);
115 recip = vmul_f32(vrecps_f32(x, recip), recip);
116 return recip;
121 float32x4_t recip = vrecpeq_f32(x); local
122 recip = vmulq_f32(vrecpsq_f32(x, recip), recip);
123 recip = vmulq_f32(vrecpsq_f32(x, recip), recip);
124 return recip;
545 float16x4_t recip = vrecpe_f16(x); local
546 recip = vmul_f16(vrecps_f16(x, recip), recip);
[all …]
DSVEMath.inl63 auto recip = svrecpe_f16(x); local
64 recip = svmul_f16_z(pg, svrecps_f16(x, recip), recip);
65 recip = svmul_f16_z(pg, svrecps_f16(x, recip), recip);
66 return recip;
71 auto recip = svrecpe_f32(x); local
72 recip = svmul_f32_z(pg, svrecps_f32(x, recip), recip);
73 recip = svmul_f32_z(pg, svrecps_f32(x, recip), recip);
74 return 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/rust/crates/ring/src/ec/curve25519/
Dops.rs127 let mut recip = Elem::zero(); in encode_point() localVariable
128 x25519_fe_invert(&mut recip, &z); in encode_point()
131 x25519_fe_mul_ttt(&mut x_over_z, &x, &recip); in encode_point()
134 x25519_fe_mul_ttt(&mut y_over_z, &y, &recip); in encode_point()
/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;
/external/rust/crates/glam/src/f32/coresimd/
Dvec4.rs330 dot.sqrt().recip()[0] in length_recip()
417 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
518 pub fn recip(self) -> Self { in recip() method
519 Self(self.0.recip()) in recip()
557 self * (length_sq.sqrt().recip() * min) in clamp_length()
559 self * (length_sq.sqrt().recip() * max) in clamp_length()
569 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
579 self * (length_sq.sqrt().recip() * min) in clamp_length_min()
Dvec3a.rs356 dot.sqrt().recip()[0] in length_recip()
443 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
539 pub fn recip(self) -> Self { in recip() method
540 Self(self.0.recip()) in recip()
578 self * (length_sq.sqrt().recip() * min) in clamp_length()
580 self * (length_sq.sqrt().recip() * max) in clamp_length()
590 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
600 self * (length_sq.sqrt().recip() * min) in clamp_length_min()
/external/rust/crates/glam/src/f32/
Dvec2.rs327 self.length().recip() in length_recip()
413 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
518 pub fn recip(self) -> Self { in recip() method
520 x: self.x.recip(), in recip()
521 y: self.y.recip(), in recip()
560 self * (length_sq.sqrt().recip() * min) in clamp_length()
562 self * (length_sq.sqrt().recip() * max) in clamp_length()
572 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
582 self * (length_sq.sqrt().recip() * min) in clamp_length_min()
Dvec3.rs372 self.length().recip() in length_recip()
458 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
566 pub fn recip(self) -> Self { in recip() method
568 x: self.x.recip(), in recip()
569 y: self.y.recip(), in recip()
570 z: self.z.recip(), in recip()
609 self * (length_sq.sqrt().recip() * min) in clamp_length()
611 self * (length_sq.sqrt().recip() * max) in clamp_length()
621 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
631 self * (length_sq.sqrt().recip() * min) in clamp_length_min()
/external/rust/crates/glam/src/f64/
Ddvec2.rs327 self.length().recip() in length_recip()
413 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
518 pub fn recip(self) -> Self { in recip() method
520 x: self.x.recip(), in recip()
521 y: self.y.recip(), in recip()
560 self * (length_sq.sqrt().recip() * min) in clamp_length()
562 self * (length_sq.sqrt().recip() * max) in clamp_length()
572 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
582 self * (length_sq.sqrt().recip() * min) in clamp_length_min()
Ddvec4.rs404 self.length().recip() in length_recip()
490 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
606 pub fn recip(self) -> Self { in recip() method
608 x: self.x.recip(), in recip()
609 y: self.y.recip(), in recip()
610 z: self.z.recip(), in recip()
611 w: self.w.recip(), in recip()
650 self * (length_sq.sqrt().recip() * min) in clamp_length()
652 self * (length_sq.sqrt().recip() * max) in clamp_length()
662 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
[all …]
Ddvec3.rs372 self.length().recip() in length_recip()
458 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
566 pub fn recip(self) -> Self { in recip() method
568 x: self.x.recip(), in recip()
569 y: self.y.recip(), in recip()
570 z: self.z.recip(), in recip()
609 self * (length_sq.sqrt().recip() * min) in clamp_length()
611 self * (length_sq.sqrt().recip() * max) in clamp_length()
621 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
631 self * (length_sq.sqrt().recip() * min) in clamp_length_min()
/external/rust/crates/glam/src/f32/scalar/
Dvec4.rs412 self.length().recip() in length_recip()
498 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
614 pub fn recip(self) -> Self { in recip() method
616 x: self.x.recip(), in recip()
617 y: self.y.recip(), in recip()
618 z: self.z.recip(), in recip()
619 w: self.w.recip(), in recip()
658 self * (length_sq.sqrt().recip() * min) in clamp_length()
660 self * (length_sq.sqrt().recip() * max) in clamp_length()
670 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
[all …]
Dvec3a.rs378 self.length().recip() in length_recip()
464 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
572 pub fn recip(self) -> Self { in recip() method
574 x: self.x.recip(), in recip()
575 y: self.y.recip(), in recip()
576 z: self.z.recip(), in recip()
615 self * (length_sq.sqrt().recip() * min) in clamp_length()
617 self * (length_sq.sqrt().recip() * max) in clamp_length()
627 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
637 self * (length_sq.sqrt().recip() * min) in clamp_length_min()
/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;
/external/rust/crates/glam/src/f32/wasm32/
Dvec4.rs437 let other_len_sq_rcp = rhs.dot(rhs).recip(); in project_onto()
538 pub fn recip(self) -> Self { in recip() method
577 self * (length_sq.sqrt().recip() * min) in clamp_length()
579 self * (length_sq.sqrt().recip() * max) in clamp_length()
589 self * (length_sq.sqrt().recip() * max) in clamp_length_max()
599 self * (length_sq.sqrt().recip() * min) in clamp_length_min()

12345