/external/ComputeLibrary/src/core/NEON/ |
D | NEMath.inl | 113 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 …]
|
D | SVEMath.inl | 63 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/ |
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/rust/crates/ring/src/ec/curve25519/ |
D | ops.rs | 127 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/ |
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;
|
/external/rust/crates/glam/src/f32/coresimd/ |
D | vec4.rs | 330 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()
|
D | vec3a.rs | 356 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/ |
D | vec2.rs | 327 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()
|
D | vec3.rs | 372 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/ |
D | dvec2.rs | 327 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()
|
D | dvec4.rs | 404 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 …]
|
D | dvec3.rs | 372 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/ |
D | vec4.rs | 412 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 …]
|
D | vec3a.rs | 378 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/ |
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;
|
/external/rust/crates/glam/src/f32/wasm32/ |
D | vec4.rs | 437 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()
|