Home
last modified time | relevance | path

Searched refs:P2 (Results 1 - 25 of 93) sorted by relevance

1234

/third_party/mbedtls/library/
H A Dripemd160.c115 #define P2(a, b, c, d, e, r, s, rp, sp) \ in mbedtls_internal_ripemd160_process() macro
127 P2(local.A, local.B, local.C, local.D, local.E, 0, 11, 5, 8); in mbedtls_internal_ripemd160_process()
128 P2(local.E, local.A, local.B, local.C, local.D, 1, 14, 14, 9); in mbedtls_internal_ripemd160_process()
129 P2(local.D, local.E, local.A, local.B, local.C, 2, 15, 7, 9); in mbedtls_internal_ripemd160_process()
130 P2(local.C, local.D, local.E, local.A, local.B, 3, 12, 0, 11); in mbedtls_internal_ripemd160_process()
131 P2(local.B, local.C, local.D, local.E, local.A, 4, 5, 9, 13); in mbedtls_internal_ripemd160_process()
132 P2(local.A, local.B, local.C, local.D, local.E, 5, 8, 2, 15); in mbedtls_internal_ripemd160_process()
133 P2(local.E, local.A, local.B, local.C, local.D, 6, 7, 11, 15); in mbedtls_internal_ripemd160_process()
134 P2(local.D, local.E, local.A, local.B, local.C, 7, 9, 4, 5); in mbedtls_internal_ripemd160_process()
135 P2(loca in mbedtls_internal_ripemd160_process()
[all...]
/third_party/ltp/testcases/kernel/syscalls/mallinfo/
H A Dmallinfo_common.h39 #define P2(f) tst_res(TINFO, "%s: %ld", #f, m->f) in print_mallinfo2() macro
40 P2(arena); in print_mallinfo2()
41 P2(ordblks); in print_mallinfo2()
42 P2(smblks); in print_mallinfo2()
43 P2(hblks); in print_mallinfo2()
44 P2(hblkhd); in print_mallinfo2()
45 P2(usmblks); in print_mallinfo2()
46 P2(fsmblks); in print_mallinfo2()
47 P2(uordblks); in print_mallinfo2()
48 P2(fordblk in print_mallinfo2()
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.h4454 template <class R, class P1, class P2, R F(P1, P2), class I>
4458 static R Call(P1 p1, P2 p2) { return F(p1, p2); } in Call()
4461 template <class R, class P1, class P2, class P3, R F(P1, P2, P3), class I>
4465 static R Call(P1 p1, P2 p2, P3 p3) { return F(p1, p2, p3); } in Call()
4468 template <class R, class P1, class P2, class P3, class P4, R F(P1, P2, P3, P4),
4473 static R Call(P1 p1, P2 p2, P3 p3, P4 p4) { return F(p1, p2, p3, p4); } in Call()
4476 template <class R, class P1, class P2, clas
[all...]
/third_party/jerryscript/tests/jerry/
H A Dfunction-prototype-bind.js67 var P2 = P1.bind(null); variable
68 var _p2 = new P2();
72 _p2 = new P2(12, 60);
76 _p2 = new P2({}, 12);
81 assert (_p2 instanceof P2);
83 var P3 = P2.bind({}, 5);
89 assert (_p3 instanceof P2);
/third_party/typescript/tests/baselines/reference/
H A DvarianceRepeatedlyPropegatesWithUnreliableFlag.js6 type P2<T> = { data: X<T> };
9 fn<K extends keyof T>(p1: P1<Pick<T, K>>, p2: P2<Pick<T, K>>): void;
13 const p2: P2<A> = null as any;
H A DcrashIntypeCheckInvocationExpression.js3 function doCompile<P0, P1, P2>(fileset: P0, moduleType: P1) {
7 export var compileServer = task<number, number, any>(<P0, P1, P2>() => {
H A DtsxTypeArgumentResolution.js33 declare class MyComp2<P extends { a: string }, P2 = {}> extends React.Component<P & P2, {}> {
34 internalProp: [P, P2];
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_enc_mips32.c295 // P2 = P0 + P1
301 #define ADD_TO_OUT(A, B, C, D, E, P0, P1, P2) \
318 "usw %[temp4], " #A "(%[" #P2 "]) \n\t" \
319 "usw %[temp5], " #B "(%[" #P2 "]) \n\t" \
320 "usw %[temp6], " #C "(%[" #P2 "]) \n\t" \
321 "usw %[temp7], " #D "(%[" #P2 "]) \n\t" \
322 "addiu %[" #P2 "], %[" #P2 "], 16 \n\t" \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DCmpInstAnalysis.cpp60 bool llvm::predicatesFoldable(ICmpInst::Predicate P1, ICmpInst::Predicate P2) { in predicatesFoldable() argument
61 return (CmpInst::isSigned(P1) == CmpInst::isSigned(P2)) || in predicatesFoldable()
62 (CmpInst::isSigned(P1) && ICmpInst::isEquality(P2)) || in predicatesFoldable()
63 (CmpInst::isSigned(P2) && ICmpInst::isEquality(P1)); in predicatesFoldable()
/third_party/node/deps/v8/src/bigint/
H A Dmul-karatsuba.cc174 RWDigits P2(scratch, n, n); in KaratsubaMain()
175 KaratsubaMain(P2, X1, Y1, scratch_for_recursion, n2); in KaratsubaMain()
178 int end = std::min(Z2.len(), P2.len()); in KaratsubaMain()
179 for (int i = 0; i < end; i++) Z2[i] = P2[i]; in KaratsubaMain()
181 DCHECK(P2[i] == 0); in KaratsubaMain()
186 overflow += AddAndReturnOverflow(Z + n2, P2); in KaratsubaMain()
/third_party/node/deps/brotli/c/common/
H A Dcontext.h111 #define BROTLI_CONTEXT(P1, P2, LUT) ((LUT)[P1] | ((LUT) + 256)[P2])
/third_party/skia/third_party/externals/brotli/c/common/
H A Dcontext.h111 #define BROTLI_CONTEXT(P1, P2, LUT) ((LUT)[P1] | ((LUT) + 256)[P2])
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DPolygon.hpp24 Polygon(const float4 *P0, const float4 *P1, const float4 *P2) in Polygon()
28 P[0][2] = P2; in Polygon()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DPolygon.hpp24 Polygon(const float4 *P0, const float4 *P1, const float4 *P2) in Polygon()
28 P[0][2] = P2; in Polygon()
/third_party/jerryscript/jerry-libm/
H A Dexp.c50 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
65 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
115 #define P2 -2.77777777770155933842e-03 /* 0xBF66C16C, 0x16BEBD93 */ macro
189 c = x - t * (P1 + t * (P2 + t * (P3 + t * (P4 + t * P5)))); in exp()
217 #undef P2 macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h81 static bool isEqual(PoolEntry *P1, PoolEntry *P2) { in isEqual() argument
83 return P1 == P2; in isEqual()
84 return isEqual(P1->getValue(), P2); in isEqual()
/third_party/ltp/testcases/kernel/containers/utsname/
H A Dutstest.c22 P2: B=gethostname
27 P2: (wait); B=gethostname
32 P2: B=gethostname; (wait); (wait); D=gethostname
37 P2: B=gethostname; (wait); sethostname(newname); D=gethostname
42 P2: (wait); sethostname(B); D=gethostname
226 int P2(void *vtest) in P2() function
258 tst_resm(TPASS, "P2: P1 claims error"); in P2()
323 r = do_clone_unshare_tests(T_NONE, 0, P1, vtest, P2, vtest); in main()
328 P1, vtest, P2, vtest); in main()
345 P2(vtes in main()
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dvp9lpf.asm323 %define P2 dstq + strideq + %1
338 %define P2 rsp + 1*mmsize + %1
419 movx m5, [P2]
460 mova [P2], m5
486 movhps [P2], m2
510 movhps [P2], m2
537 mova [P2], m2
553 mova [P2], m2
588 mova m9, [P2]
613 %define rp2 [P2]
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dcallback.h375 template <typename R, typename T, typename P1, typename P2, typename P3,
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()
405 typename std::remove_reference<P2>::type p2_;
559 template <typename R, typename T, typename P1, typename P2, typename P3,
562 T* object, R (T::*function)(P1, P2, P3, P4, P5, P6, A1, A2), in NewPermanentCallback()
564 typename internal::InternalConstRef<P2>::type p2, in NewPermanentCallback()
569 return new internal::MethodResultCallback_6_2<R, T, P1, P2, P3, P4, P5, P6, in NewPermanentCallback()
/third_party/musl/src/math/
H A Dcbrt.c29 P2 = 1.621429720105354466140, /* 0x3ff9f160, 0x4a49d6c2 */ variable
80 t = t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4)); in cbrt()
H A Dexpm1l.c65 P2 = -3.423199068835684263987132888286791620673E2L, variable
105 px = (((( P4 * x + P3) * x + P2) * x + P1) * x + P0) * x; in expm1l()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dcbrt.c29 P2 = 1.621429720105354466140, /* 0x3ff9f160, 0x4a49d6c2 */ variable
80 t = t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4)); in cbrt()
H A Dexpm1l.c65 P2 = -3.423199068835684263987132888286791620673E2L, variable
105 px = (((( P4 * x + P3) * x + P2) * x + P1) * x + P0) * x; in expm1l()
/third_party/backends/sanei/
H A Dsanei_ir.c324 double *P2; in sanei_ir_threshold_maxentropy() local
331 P2 = malloc (HISTOGRAM_SIZE * sizeof (double)); in sanei_ir_threshold_maxentropy()
332 if (!P1 || !P2) in sanei_ir_threshold_maxentropy()
339 P2[ih] = 1.0 - P1[ih]; in sanei_ir_threshold_maxentropy()
350 if (P2[ih] != 0) in sanei_ir_threshold_maxentropy()
373 ent_obj -= ( norm_histo[ih] / P2[it] ) * log ( norm_histo[ih] / P2[it] ); in sanei_ir_threshold_maxentropy()
406 if (P2) in sanei_ir_threshold_maxentropy()
407 free (P2); in sanei_ir_threshold_maxentropy()
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_dict.py85 P2 = """for_stmt< 'for' any 'in' node=any ':' any* >
88 p2 = patcomp.compile_pattern(P2)

Completed in 34 milliseconds

1234