/third_party/skia/experimental/lowp-basic/ |
H A D | bilerp-study.cpp | 38 static float golden_bilerp(float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) { in golden_bilerp() argument 42 + tx * ty * p11; in golden_bilerp() 46 float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) { in golden_bilerp2() 51 double bottom = (1.0 - dtx) * p01 + dtx * p11; in golden_bilerp2() 57 float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) { in full_res_bilerp() 60 int64_t bottom = ftx * (p11 - p01) + 65536 * p01; in full_res_bilerp() 69 static int16_t bilerp_1(float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) { in bilerp_1() argument 77 qw = (p11 - p01) << logPixelScale; in bilerp_1() 78 qm = (p11 + p01) << logPixelScale; in bilerp_1() 103 for (int p11 in check_bilerp() 45 golden_bilerp2( float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) golden_bilerp2() argument 56 full_res_bilerp( float tx, float ty, int16_t p00, int16_t p10, int16_t p01, int16_t p11) full_res_bilerp() argument [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuBilinearImageCompare.cpp | 74 inline deUint8 interpolateChannel (deUint32 fx1, deUint32 fy1, deUint8 p00, deUint8 p01, deUint8 p10, deUint8 p11) in interpolateChannel() argument 79 const deUint32 sum = fx0*fy0*p00 + fx1*fy0*p10 + fx0*fy1*p01 + fx1*fy1*p11; in interpolateChannel() 102 deUint32 p11 = readRGBA8Raw(access, x1, y1); in bilinearSampleRGBA8() 106 res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), getChannel<0>(p11)) << RGBA::RED_SHIFT; in bilinearSampleRGBA8() 107 res |= interpolateChannel(fx1, fy1, getChannel<1>(p00), getChannel<1>(p01), getChannel<1>(p10), getChannel<1>(p11)) << RGBA::GREEN_SHIFT; in bilinearSampleRGBA8() 108 res |= interpolateChannel(fx1, fy1, getChannel<2>(p00), getChannel<2>(p01), getChannel<2>(p10), getChannel<2>(p11)) << RGBA::BLUE_SHIFT; in bilinearSampleRGBA8() 109 res |= interpolateChannel(fx1, fy1, getChannel<3>(p00), getChannel<3>(p01), getChannel<3>(p10), getChannel<3>(p11)) << RGBA::ALPHA_SHIFT; in bilinearSampleRGBA8()
|
H A D | tcuTexLookupVerifier.cpp | 98 Vec4 p11; //!< (1, 1) member 106 dst.p11 = lookup<float>(level, sampler, x1, y1, z); in lookupQuad() 161 const Vec4 d2 = abs(quad.p11 - quad.p10); in computeBilinearSearchStepFromFloatQuad() 162 const Vec4 d3 = abs(quad.p11 - quad.p01); in computeBilinearSearchStepFromFloatQuad() 205 return min(quad.p00, min(quad.p10, min(quad.p01, quad.p11))); in min() 210 return max(quad.p00, max(quad.p10, max(quad.p01, quad.p11))); in max() 306 const Vec4 c1 = quad.p01*(1.0f - a) + quad.p11*a; in isBilinearRangeValid() 341 const Vec4 c0 = quad0.p00*(1.0f-a)*(1.0f-b) + quad0.p10*a*(1.0f-b) + quad0.p01*(1.0f-a)*b + quad0.p11*a*b; in isTrilinearRangeValid() 342 const Vec4 c1 = quad1.p00*(1.0f-a)*(1.0f-b) + quad1.p10*a*(1.0f-b) + quad1.p01*(1.0f-a)*b + quad1.p11*a*b; in isTrilinearRangeValid() 373 const Vec4 c1 = (reductionMode == tcu::Sampler::MIN ? tcu::min(quad.p10, quad.p11) in isReductionValid() [all...] |
H A D | tcuFuzzyImageCompare.cpp | 145 deUint32 p11 = readUnorm8<NumChannels>(src, i1, j1); in bilinearSample() local 154 (getChannel(p11, c)*( a)*( b)); in bilinearSample()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | thisTypeInObjectLiterals2.js | 172 let p11 = defineProp(p1, "bar", { 180 p11.bar = p11.bar + 1; 356 var p11 = defineProp(p1, "bar", {
variable 364 p11.bar = p11.bar + 1;
463 declare let p11: Point & Record<"bar", number>;
|
H A D | transformsElideNullUndefinedType.js | 38 class C3 { constructor(p11: undefined) { } } 90 constructor(p11) { }
|
H A D | importCallExpressionReturnPromiseOfAny.js | 19 var p11: Promise<typeof defaultModule> = import(getSpecifier()); variable 51 var p11 = (_e = getSpecifier(), Promise.resolve().then(() => require(_e)));
|
H A D | promiseType.js | 90 const p11 = p.catch(null); 329 const p11 = p.catch(null);
|
H A D | promiseTypeStrictNull.js | 90 const p11 = p.catch(null); 324 const p11 = p.catch(null);
|
/third_party/vk-gl-cts/modules/gles2/performance/ |
H A D | es2pTextureCases.cpp | 115 Vec2 p11 = (m_coordTransform * Vec3(1.0f, 1.0f, 1.0f)).swizzle(0,1); in init() local 120 Vec4(p11.x(), p11.y(), 0.0f, 0.0f))); in init() 124 log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestLog::EndMessage; in init()
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_find_best_partitioning.cpp | 296 int p11 = popcount(a[1] ^ b[1]); in partition_mismatch3() local 303 int s0 = p11 + p22; in partition_mismatch3() 312 int s5 = p11 + p20; in partition_mismatch3() 338 int p11 = popcount(a[1] ^ b[1]); in partition_mismatch4() local 359 int v0 = p00 + astc::min(p11 + mx23, p12 + mx13, p13 + mx12); in partition_mismatch4() 361 int v2 = p02 + astc::min(p11 + mx03, p10 + mx13, p13 + mx01); in partition_mismatch4() 362 int v3 = p03 + astc::min(p11 + mx02, p12 + mx01, p10 + mx12); in partition_mismatch4()
|
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ia64.S | 151 { .mmi; cmp.eq p11,p0=3,r29 164 .pred.rel "mutex",p8,p9,p10,p11,p12,p13,p14,p15 178 (p11) shrp i0=r15,r14,24 } 179 { .mii; (p11) shrp i1=r16,r15,24 187 .pred.rel "mutex",p8,p9,p10,p11,p12,p13,p14,p15 236 (p11) shrp i0=r15,r14,24 };; 242 (p11) shrp i1=r16,r15,24 };;
|
/third_party/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ia64.S | 151 { .mmi; cmp.eq p11,p0=3,r29 164 .pred.rel "mutex",p8,p9,p10,p11,p12,p13,p14,p15 178 (p11) shrp i0=r15,r14,24 } 179 { .mii; (p11) shrp i1=r16,r15,24 187 .pred.rel "mutex",p8,p9,p10,p11,p12,p13,p14,p15 236 (p11) shrp i0=r15,r14,24 };; 242 (p11) shrp i1=r16,r15,24 };;
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsShaderPerformanceMeasurer.hpp | 53 , p11 (p11_) in AttribSpec() 63 tcu::Vec4 p11; //!< Top right. member
|
/third_party/vk-gl-cts/modules/gles3/performance/ |
H A D | es3pTextureCases.cpp | 123 Vec2 p11 = (m_coordTransform * Vec3(1.0f, 1.0f, 1.0f)).swizzle(0,1); in init() local 128 Vec4(p11.x(), p11.y(), 0.0f, 0.0f))); in init() 132 log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestLog::EndMessage; in init()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
H A D | RBBITestMonkey.java | 1763 int p11 = p1; in next() 1764 if (p11>0 && fSepSet.contains(cAt(p11))) { in next() 1765 p11 = moveBack(p11); in next() 1767 while (p11>0 && fSpSet.contains(cAt(p11))) { in next() 1768 p11 = moveBack(p11); in next() 1770 while (p11> in next() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | RBBITestMonkey.java | 1768 int p11 = p1; in next() 1769 if (p11>0 && fSepSet.contains(cAt(p11))) { in next() 1770 p11 = moveBack(p11); in next() 1772 while (p11>0 && fSpSet.contains(cAt(p11))) { in next() 1773 p11 = moveBack(p11); in next() 1775 while (p11> in next() [all...] |
/third_party/json/docs/examples/ |
H A D | json_pointer.cpp | 41 json::json_pointer p11("/foo/~3"); in main()
|
/third_party/vk-gl-cts/framework/delibs/deimage/ |
H A D | deImage.c | 150 deARGB p11 = deImage_getPixel(srcImage, x1, y1); in deImage_scale() local 152 deARGB_add(deARGB_multiply(p01, f01), deARGB_multiply(p11, f11))); in deImage_scale()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | texcompress_astc.cpp | 1291 int p00, p01, p10, p11, i0, i1; in compute_infill_weights() local 1296 p11 = weights[(v0 + wt_w + 1) * 2]; in compute_infill_weights() 1297 i0 = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4; in compute_infill_weights() 1301 p11 = weights[(v0 + wt_w + 1) * 2 + 1]; in compute_infill_weights() 1303 i1 = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4; in compute_infill_weights() 1308 int p00, p01, p10, p11, i; in compute_infill_weights() local 1313 p11 = weights[v0 + wt_w + 1]; in compute_infill_weights() 1315 i = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4; in compute_infill_weights()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/ |
H A D | vktRobustnessIndexAccessTests.cpp | 806 const tcu::Vec4 p11 = resultAccess.getPixel((1 * renderSize.x()) / 8, (5 * renderSize.y()) / 8); in iterate() local 808 const bool c1 = p11.x() == clearColor.x() && p11.y() == clearColor.y() && p11.z() == clearColor.z() in iterate()
|
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | ia64-mont.pl | 443 cmp4.le p10,p11=6,in5 } 465 (p11)fcvt.fxu ai5=f0 471 (p11)fcvt.fxu bj[2]=f0 477 (p11)fcvt.fxu ni5=f0 834 (p11)br.cond.dpnt.few .Ldone };;
|
/third_party/openssl/crypto/bn/asm/ |
H A D | ia64-mont.pl | 443 cmp4.le p10,p11=6,in5 } 465 (p11)fcvt.fxu ai5=f0 471 (p11)fcvt.fxu bj[2]=f0 477 (p11)fcvt.fxu ni5=f0 834 (p11)br.cond.dpnt.few .Ldone };;
|
/third_party/skia/src/core/ |
H A D | SkGeometry.cpp | 498 float4 p00, p11, p22, p33, T; 500 p11.lo = p11.hi = skvx::bit_pun<float2>(src[1]); 506 float4 ab = unchecked_mix(p00, p11, T); 507 float4 bc = unchecked_mix(p11, p22, T);
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | rbbitst.cpp | 2535 int p11 = p1; in next() local 2536 if (fSepSet->contains(cAt(p11))) { in next() 2537 p11 = moveBack(p11); in next() 2539 while (fSpSet->contains(cAt(p11))) { in next() 2540 p11 = moveBack(p11); in next() 2542 while (fCloseSet->contains(cAt(p11))) { in next() 2543 p11 = moveBack(p11); in next() [all...] |