Home
last modified time | relevance | path

Searched refs:P0 (Results 1 - 25 of 57) sorted by relevance

123

/third_party/ltp/testcases/kernel/mem/hugetlb/hugemmap/
H A Dhugemmap11.c24 #define P0 "ffffffff" macro
40 memcpy(p, P0, 8); in run_test()
46 if (memcmp(P0, buf, 8)) { in run_test()
55 if (memcmp(p, P0, 8)) in run_test()
/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) \
302 "ulw %[temp0], " #A "(%[" #P0 "]) \n\t" \
303 "ulw %[temp1], " #B "(%[" #P0 "]) \n\t" \
304 "ulw %[temp2], " #C "(%[" #P0 "]) \n\t" \
305 "ulw %[temp3], " #D "(%[" #P0 "]) \n\t" \
314 "addiu %[" #P0 "], %[" #P0 "], 16 \n\t" \
323 "bne %[" #P0 "], %[LoopEnd], 1b \n\t" \
/third_party/typescript/tests/baselines/reference/
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 DtemplateLiteralTypes1.js133 declare function getProp<T, P0 extends keyof T & string, P1 extends keyof T[P0] & string, P2 extends keyof T[P0][P1] & string>(obj: T, path: `${P0}.${P1}.${P2}`): T[P0][P1][P2];
134 declare function getProp<T, P0 extends keyof T & string, P1 extends keyof T[P0] & string>(obj: T, path: `${P0}.${P1}`): T[P0][P1];
135 declare function getProp<T, P0 extend
[all...]
H A DcrashInresolveReturnStatement.js12 function createWorkItemDialog<P0>(dialogType: P0) {
H A DindexingTypesWithNever.js65 type P0 = {};
70 type P0Names = RequiredPropNames<P0>; // expect never
80 type P0Props = RequiredProps<P0>; // expect {}
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeUniquePtr.hpp175 template<typename T, typename P0>
176 inline MovePtr<T> newMovePtr (P0 p0) { return MovePtr<T>(new T(p0)); } in newMovePtr()
177 template<typename T, typename P0, typename P1>
178 inline MovePtr<T> newMovePtr (P0 p0, P1 p1) { return MovePtr<T>(new T(p0, p1)); } in newMovePtr()
179 template<typename T, typename P0, typename P1, typename P2>
180 inline MovePtr<T> newMovePtr (P0 p0, P1 p1, P2 p2) { return MovePtr<T>(new T(p0, p1, p2)); } in newMovePtr()
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DRenderer.cpp859 const float4 &P0 = v0.position; in setupLine() local
862 if(P0.w <= 0 && P1.w <= 0) in setupLine()
872 float dx = W * (P1.x / P1.w - P0.x / P0.w); in setupLine()
873 float dy = H * (P1.y / P1.w - P0.y / P0.w); in setupLine()
887 P[0] = P0; in setupLine()
890 P[3] = P0; in setupLine()
897 float dx0h = dx * P0.w / H; in setupLine()
898 float dy0w = dy * P0 in setupLine()
[all...]
H A DPolygon.hpp24 Polygon(const float4 *P0, const float4 *P1, const float4 *P2) in Polygon()
26 P[0][0] = P0; in Polygon()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCompound.cpp99 if ((Hexagon::P0 == DstReg || Hexagon::P1 == DstReg) && in getCompoundCandidateGroup()
109 // P0 = cmp.eq(Rs,#u2) in getCompoundCandidateGroup()
112 if ((Hexagon::P0 == DstReg || Hexagon::P1 == DstReg) && in getCompoundCandidateGroup()
143 if ((Hexagon::P0 == DstReg || Hexagon::P1 == DstReg) && in getCompoundCandidateGroup()
157 if (Hexagon::P0 == Src1Reg || Hexagon::P1 == Src1Reg) in getCompoundCandidateGroup()
178 assert((PredReg == Hexagon::P0) || (PredReg == Hexagon::P1) || in getCompoundOp()
186 return (PredReg == Hexagon::P0) ? fp0_jump_nt : fp1_jump_nt; in getCompoundOp()
188 return (PredReg == Hexagon::P0) ? fp0_jump_t : fp1_jump_t; in getCompoundOp()
190 return (PredReg == Hexagon::P0) ? tp0_jump_nt : tp1_jump_nt; in getCompoundOp()
192 return (PredReg == Hexagon::P0) in getCompoundOp()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dcavsdsp.c40 #define P0 p0_p[-1*stride] macro
47 int p0 = P0; in loop_filter_l2()
54 P0 = (P1 + p0 + s) >> 2; in loop_filter_l2()
57 P0 = (2*P1 + s) >> 2; in loop_filter_l2()
68 int p0 = P0; in loop_filter_l1()
73 P0 = av_clip_uint8(p0+delta); in loop_filter_l1()
76 delta = av_clip(((P0-P1)*3+P2-Q0+4)>>3, -tc, tc); in loop_filter_l1()
80 delta = av_clip(((Q1-Q0)*3+P0-Q2+4)>>3, -tc, tc); in loop_filter_l1()
88 int p0 = P0; in loop_filter_c2()
95 P0 in loop_filter_c2()
115 #undef P0 global() macro
[all...]
/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()
26 P[0][0] = P0; in Polygon()
H A DRenderer.cpp1774 const float4 &P0 = v0.v[pos]; in setupLine() local
1777 if(P0.w <= 0 && P1.w <= 0) in setupLine()
1785 float dx = W * (P1.x / P1.w - P0.x / P0.w); in setupLine()
1786 float dy = H * (P1.y / P1.w - P0.y / P0.w); in setupLine()
1800 P[0] = P0; in setupLine()
1803 P[3] = P0; in setupLine()
1810 float dx0h = dx * P0.w / H; in setupLine()
1811 float dy0w = dy * P0 in setupLine()
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dvp9lpf.asm325 %define P0 dstq + stride3q + %1
340 %define P0 rsp + 3*mmsize + %1
423 movx m7, [P0]
462 mova [P0], m7
487 movhps [P0], m3
511 movhps [P0], m3
539 mova [P0], m6
555 mova [P0], m6
590 mova m11, [P0]
615 %define rp0 [P0]
[all...]
/third_party/musl/src/math/
H A Dcbrt.c27 P0 = 1.87595182427177009643, /* 0x3ffe03e6, 0x0f61e692 */ variable
80 t = t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4)); in cbrt()
H A Dexpm1l.c63 P0 = -1.586135578666346600772998894928250240826E4L, 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.c27 P0 = 1.87595182427177009643, /* 0x3ffe03e6, 0x0f61e692 */ variable
80 t = t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4)); in cbrt()
H A Dexpm1l.c63 P0 = -1.586135578666346600772998894928250240826E4L, variable
105 px = (((( P4 * x + P3) * x + P2) * x + P1) * x + P0) * x; in expm1l()
/third_party/node/deps/v8/src/bigint/
H A Dmul-karatsuba.cc170 RWDigits P0(scratch, 0, n); in KaratsubaMain()
171 KaratsubaMain(P0, X0, Y0, scratch_for_recursion, n2); in KaratsubaMain()
173 for (int i = 0; i < n; i++) Z[i] = P0[i]; in KaratsubaMain()
185 digit_t overflow = AddAndReturnOverflow(Z + n2, P0); in KaratsubaMain()
/third_party/vk-gl-cts/framework/common/
H A DtcuInterval.hpp288 #define TCU_INTERVAL_APPLY_MONOTONE2(DST, P0, A0, P1, A1, VAR, BODY) \
290 DST, P0, A0, tmp2_, \
293 #define TCU_INTERVAL_APPLY_MONOTONE3(DST, P0, A0, P1, A1, P2, A2, VAR, BODY) \
295 DST, P0, A0, tmp3_, \
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dpshints.c1727 FT_Vector P0, P1; in cf2_glyphpath_lineTo() local
1779 P0.x = ADD_INT32( glyphpath->currentCS.x, xOffset ); in cf2_glyphpath_lineTo()
1780 P0.y = ADD_INT32( glyphpath->currentCS.y, yOffset ); in cf2_glyphpath_lineTo()
1787 cf2_glyphpath_pushMove( glyphpath, P0 ); in cf2_glyphpath_lineTo()
1802 &P0, in cf2_glyphpath_lineTo()
1810 glyphpath->prevElemP0 = P0; in cf2_glyphpath_lineTo()
1837 FT_Vector P0, P1, P2, P3; in cf2_glyphpath_curveTo() local
1862 P0.x = ADD_INT32( glyphpath->currentCS.x, xOffset1 ); in cf2_glyphpath_curveTo()
1863 P0.y = ADD_INT32( glyphpath->currentCS.y, yOffset1 ); in cf2_glyphpath_curveTo()
1875 cf2_glyphpath_pushMove( glyphpath, P0 ); in cf2_glyphpath_curveTo()
[all...]
/third_party/skia/src/core/
H A DSkGeometry.h450 Sk2s P0 = from_point(src[0]); in SkCubicCoeff() local
455 fA = P3 + three * (P1 - P2) - P0; in SkCubicCoeff()
456 fB = three * (P2 - times_2(P1) + P0); in SkCubicCoeff()
457 fC = three * (P1 - P0); in SkCubicCoeff()
458 fD = P0; in SkCubicCoeff()
/third_party/node/deps/openssl/openssl/crypto/sm3/
H A Dsm3_local.h42 #define P0(X) (X ^ ROTATE(X, 9) ^ ROTATE(X, 17)) macro
64 H = P0(TT2); \
/third_party/openssl/crypto/sm3/
H A Dsm3_local.h42 #define P0(X) (X ^ ROTATE(X, 9) ^ ROTATE(X, 17)) macro
64 H = P0(TT2); \
/third_party/ffmpeg/libavcodec/arm/
H A Dvp8dsp_neon.S275 vabd.u8 q9, q3, q4 @ abs(P0-Q0)
277 vqadd.u8 q9, q9, q9 @ abs(P0-Q0) * 2
279 vqadd.u8 q11, q9, q10 @ (abs(P0-Q0)*2) + (abs(P1-Q1)/2)
281 vcle.u8 q8, q11, q14 @ (abs(P0-Q0)*2) + (abs(P1-Q1)/2) <= flim
284 vabd.u8 q12, q2, q3 @ abs(P1-P0)
288 vcle.u8 q8, q12, q15 @ abs(P1-P0) <= flim_I
299 vabd.u8 q9, q3, q4 @ abs(P0-Q0)
302 vqadd.u8 q9, q9, q9 @ abs(P0-Q0) * 2
306 vqadd.u8 q11, q9, q10 @ (abs(P0-Q0)*2) + (abs(P1-Q1)/2)
307 vcgt.u8 q12, q12, q15 @ abs(P1-P0) > hev_thres
[all...]

Completed in 15 milliseconds

123