/third_party/jerryscript/jerry-libm/ |
H A D | exp.c | 50 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5 51 * (where z=r*r, and the values of P1 to P5 are listed below) 54 * | 2.0+P1*z+...+P5*z - R(z) | <= 2 65 * R1(r) = r - (P1*r + P2*r + ... + P5*r ). 118 #define P5 4.13813679705723846039e-08 /* 0x3E663769, 0x72BEA4D0 */ macro 189 c = x - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in exp() 220 #undef P5 macro
|
H A D | pow.c | 108 #define P5 4.13813679705723846039e-08 /* 0x3E663769, 0x72BEA4D0 */ macro 434 t1.dbl = z.dbl - t.dbl * (P1 + t.dbl * (P2 + t.dbl * (P3 + t.dbl * (P4 + t.dbl * P5)))); in pow() 466 #undef P5 macro
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | callback.h | 376 typename P4, typename P5, typename P6, typename A1, typename A2> 379 typedef R (T::*MethodType)(P1, P2, P3, P4, P5, P6, A1, A2); 381 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) in MethodResultCallback_6_2() 408 typename std::remove_reference<P5>::type p5_; 560 typename P4, typename P5, typename P6, typename A1, typename A2> 562 T* object, R (T::*function)(P1, P2, P3, P4, P5, P6, A1, A2), in NewPermanentCallback() 567 typename internal::InternalConstRef<P5>::type p5, in NewPermanentCallback() 569 return new internal::MethodResultCallback_6_2<R, T, P1, P2, P3, P4, P5, P6, in NewPermanentCallback()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp9lpf.asm | 320 %define P5 dstq + 2*mstrideq + %1 348 %define P5 rsp + 10*mmsize + %1 416 movx m2, [P5] 438 mova [P5], m2 478 movh [P5], m1 502 movh [P5], m1 723 mova m8, [P5] 728 %define rp5 [P5] 923 mova m8, [P5] 938 %define rp5 [P5] [all...] |
/third_party/jerryscript/tests/jerry/ |
H A D | function-prototype-bind.js | 100 var P5 = P.bind(undefined); 101 P5(5, 4);
|
/third_party/optimized-routines/math/ |
H A D | v_logf.c | 19 #define P5 v_f32 (Poly[2]) macro 58 /* n*ln2 + r + r2*(P1 + r*P2 + r2*(P3 + r*P4 + r2*(P5 + r*P6 + r2*P7))). */ in logf() 59 p = v_fma_f32 (P6, r, P5); in logf()
|
/third_party/musl/src/math/ |
H A D | exp2l.c | 45 P5 = 0x1.5d8804780a736p-10, variable 250 + z * (P5 + z * P6))))) + t_hi; in exp2l() 263 P5 = 0x1.5d87fe78a67311071dee13fd11d9p-10L, variable 614 r = t + t * z * (P1 + z * (P2 + z * (P3 + z * (P4 + z * (P5 + z * (P6 in exp2l()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | exp2l.c | 45 P5 = 0x1.5d8804780a736p-10, variable 250 + z * (P5 + z * P6))))) + t_hi; in exp2l() 263 P5 = 0x1.5d87fe78a67311071dee13fd11d9p-10L, variable 614 r = t + t * z * (P1 + z * (P2 + z * (P3 + z * (P4 + z * (P5 + z * (P6 in exp2l()
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
H A D | upb.h | 4476 template <class R, class P1, class P2, class P3, class P4, class P5, 4477 R F(P1, P2, P3, P4, P5), class I> 4481 static R Call(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) { in Call() 4524 template <class R, class P1, class P2, class P3, class P4, class P5, 4525 R F(P1, P2, P3, P4, P5), class I> 4589 template <class R, class P1, class P2, class P3, class P4, class P5> 4591 template <R F(P1, P2, P3, P4, P5)> 4592 Func5<R, P1, P2, P3, P4, P5, F, FuncInfo<P1, R> > GetFunc() { in GetFunc() 4593 return Func5<R, P1, P2, P3, P4, P5, F, FuncInfo<P1, R> >(); in GetFunc() 4596 template <R F(P1, P2, P3, P4, P5)> [all...] |
/third_party/ltp/testcases/kernel/syscalls/ptrace/ |
H A D | ptrace04.c | 35 R(P0) R(P1) R(P2) R(P3) R(P4) R(P5) R(FP) R(USP)
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
H A D | MeasureUnitImpl.java | 335 P5(5), enum constant 459 trieBuilder.add("pow5-", PowerPart.P5.getTrieIndex());
|
/third_party/rust/crates/minimal-lexical/src/ |
H A D | libm.rs | 52 const P5: f32 = 4.1381369442e-08; /* 0x3331bb4c */ in powf() consts 358 t1 = z - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in powf() 607 const P5: f64 = 4.13813679705723846039e-08; /* 0x3e663769_72bea4d0 */ in powd() consts 932 let t1: f64 = z - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in powd()
|
/third_party/FreeBSD/lib/msun/ld128/ |
H A D | s_logl.c | 101 P5 = 2.00000000000000000000000085468039943e-1L, /* 0x19999999999999999999a6d3567f4.0p-115L */ variable 551 d * (P4 + d * (P5 + d * (P6 + d * (P7 + d * (P8 + in k_logl() 660 d * (P4 + d * (P5 + d * (P6 + d * (P7 + d * (P8 + in log1pl()
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/modes/ |
H A D | ghash-armv4.S | 438 veor d20, d20, d21 @ t2 = (N) (P4 + P5) << 24 476 veor d20, d20, d21 @ t2 = (N) (P4 + P5) << 24 513 veor d20, d20, d21 @ t2 = (N) (P4 + P5) << 24
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/modes/ |
H A D | ghash-armv4.S | 438 veor d20, d20, d21 @ t2 = (N) (P4 + P5) << 24 476 veor d20, d20, d21 @ t2 = (N) (P4 + P5) << 24 513 veor d20, d20, d21 @ t2 = (N) (P4 + P5) << 24
|
/third_party/node/deps/v8/src/base/ |
H A D | ieee754.cc | 1402 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5 1403 * (where z=r*r, and the values of P1 to P5 are listed below) 1406 * | 2.0+P1*z+...+P5*z - R(z) | <= 2 1417 * R1(r) = r - (P1*r + P2*r + ... + P5*r ). 1458 P5 = 4.13813679705723846039e-08, /* 0x3E663769, 0x72BEA4D0 */ in exp() local 1522 c = x - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in exp() 2656 P5 = 4.13813679705723846039e-08, // 0x3E663769, 0x72BEA4D0 in pow() local 2885 t1 = z - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in pow()
|
/third_party/libunwind/libunwind/src/ia64/ |
H A D | unwind_decoder.h | 269 UNW_DEC_FRGR_MEM(P5, grmask, frmask, arg); in unw_decode_p2_p5()
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/bn/ |
H A D | armv4-gf2m.S | 201 veor d6, d6, d7 @ t2 = (N) (P4 + P5) << 24
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/bn/ |
H A D | armv4-gf2m.S | 201 veor d6, d6, d7 @ t2 = (N) (P4 + P5) << 24
|
/third_party/openssl/test/ |
H A D | modes_internal_test.c | 370 # define P5 P4 macro 394 # define P6 P5
|
/third_party/ffmpeg/libavcodec/ |
H A D | nvenc.c | 177 PRESET(P5), in nvenc_map_preset() 187 PRESET_ALIAS(BD, P5, NVENC_DEPRECATED_PRESET), in nvenc_map_preset()
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-more-actions.h | 498 #define GMOCK_INTERNAL_COUNT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) P5
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Disassembler/ |
H A D | AArch64Disassembler.cpp | 603 AArch64::P4, AArch64::P5, AArch64::P6, AArch64::P7,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AsmParser/ |
H A D | AArch64AsmParser.cpp | 2230 .Case("p5", AArch64::P5) in matchSVEPredicateVectorRegName()
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 16029 #define OP_IsType 18 /* jump, synopsis: if typeof(P1.P3) in P5 goto P2 */ 16172 #define OP_AggInverse 161 /* synopsis: accum=r[P3] inverse(r[P2@P5]) */ 16173 #define OP_AggStep 162 /* synopsis: accum=r[P3] step(r[P2@P5]) */ 16174 #define OP_AggStep1 163 /* synopsis: accum=r[P3] step(r[P2@P5]) */ 16308 SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe*, u16 P5); 19262 ** Bitfield flags for P5 value in various opcodes. 19274 /* Also used in P2 (not P5) of OP_Delete */ [all...] |