Searched refs:p10 (Results 1 - 25 of 26) sorted by relevance

12

/external/llvm/unittests/ADT/
H A DMakeUniqueTest.cpp63 auto p10 = local
66 EXPECT_TRUE((bool)p10);
67 EXPECT_EQ(std::make_tuple(0, 1, 2, 3, 4, 5, 6, 7, 8, 9), *p10);
/external/clang/test/SemaCXX/
H A Dcxx11-ast-print.cpp39 // CHECK: const char *p10 = 3.300e+15_fritz;
40 const char *p10 = 3.300e+15_fritz; variable
/external/v8/test/mjsunit/compiler/
H A Dregress-loadfield.js60 a.p10 = "";
/external/deqp/modules/glshared/
H A DglsShaderPerformanceMeasurer.hpp52 , p10 (p10_)
62 tcu::Vec4 p10; //!< Top left. member in struct:deqp::gls::AttribSpec
H A DglsShaderPerformanceMeasurer.cpp93 dst[getVtxIndex(x, y, gridSizeX)*numComponents + compNdx] = triQuadInterpolate(xf, yf, tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spec.p10[compNdx], spec.p11[compNdx]));
/external/deqp/framework/common/
H A DtcuBilinearImageCompare.cpp74 inline deUint8 interpolateChannel (deUint32 fx1, deUint32 fy1, deUint8 p00, deUint8 p01, deUint8 p10, deUint8 p11) argument
79 const deUint32 sum = fx0*fy0*p00 + fx1*fy0*p10 + fx0*fy1*p01 + fx1*fy1*p11;
100 deUint32 p10 = readRGBA8Raw(access, x1, y0);
106 res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), getChannel<0>(p11)) << RGBA::RED_SHIFT;
107 res |= interpolateChannel(fx1, fy1, getChannel<1>(p00), getChannel<1>(p01), getChannel<1>(p10), getChannel<1>(p11)) << RGBA::GREEN_SHIFT;
108 res |= interpolateChannel(fx1, fy1, getChannel<2>(p00), getChannel<2>(p01), getChannel<2>(p10), getChannel<2>(p11)) << RGBA::BLUE_SHIFT;
109 res |= interpolateChannel(fx1, fy1, getChannel<3>(p00), getChannel<3>(p01), getChannel<3>(p10), getChannel<3>(p11)) << RGBA::ALPHA_SHIFT;
H A DtcuFuzzyImageCompare.cpp141 deUint32 p10 = readUnorm8<NumChannels>(src, i1, j0); local
150 (getChannel(p10, c)*( a)*(1.0f-b)) +
H A DtcuTexLookupVerifier.cpp97 Vec4 p10; //!< (0, 1) member in struct:tcu::ColorQuad
104 dst.p10 = lookup<float>(level, sampler, x1, y0, z);
159 const Vec4 d0 = abs(quad.p10 - quad.p00);
161 const Vec4 d2 = abs(quad.p11 - quad.p10);
205 return min(quad.p00, min(quad.p10, min(quad.p01, quad.p11)));
210 return max(quad.p00, max(quad.p10, max(quad.p01, quad.p11)));
303 const Vec4 c0 = quad.p00*(1.0f - a) + quad.p10*a;
335 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;
336 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;
404 const Vec4 c0 = quad0.p00*(1.0f-a0)*(1.0f-b0) + quad0.p10*a
[all...]
H A DtcuTexture.cpp1393 Vec4 p10 = (i1UseBorder || j0UseBorder) ? lookupBorder(access.getFormat(), sampler) : lookup(access, i1, j0, offset.z()); local
1399 (p10*( a)*(1.0f-b)) +
1462 float p10 = execCompare(p10Clr, sampler.compare, sampler.compareChannel, ref, isFixedPointDepthFormat); local
1468 (p10*( a)*(1.0f-b)) +
/external/ceres-solver/include/ceres/internal/
H A Dmanual_constructor.h182 const T9& p9, const T10& p10) {
183 new(space()) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10);
191 const T9& p9, const T10& p10, const T11& p11) {
192 new(space()) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11);
180 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10) argument
189 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10, const T11& p11) argument
/external/deqp/modules/gles2/performance/
H A Des2pTextureCases.cpp113 Vec2 p10 = (m_coordTransform * Vec3(1.0f, 0.0f, 1.0f)).swizzle(0,1); local
118 Vec4(p10.x(), p10.y(), 0.0f, 0.0f),
124 log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestLog::EndMessage;
H A Des2pShaderOperatorTests.cpp220 , p10 (p10_)
230 tcu::Vec4 p10; //!< Top left. member in struct:deqp::gles2::Performance::__anon3253::OperatorPerformanceCase::AttribSpec
368 dst[dstNdx++] = triQuadInterpolate((XF), (YF), tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spec.p10[compNdx], spec.p11[compNdx]))
/external/deqp/modules/gles3/performance/
H A Des3pTextureCases.cpp121 Vec2 p10 = (m_coordTransform * Vec3(1.0f, 0.0f, 1.0f)).swizzle(0,1); local
126 Vec4(p10.x(), p10.y(), 0.0f, 0.0f),
132 log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestLog::EndMessage;
H A Des3pShaderOperatorTests.cpp220 , p10 (p10_)
230 tcu::Vec4 p10; //!< Top left. member in struct:deqp::gles3::Performance::__anon3542::OperatorPerformanceCase::AttribSpec
368 dst[dstNdx++] = triQuadInterpolate((XF), (YF), tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spec.p10[compNdx], spec.p11[compNdx]))
/external/skia/tests/
H A DPathOpsQuadIntersectionTest.cpp478 SkDPoint p10 = quad1.ptAtT(t10); local
482 p10.fX, p10.fY, p1Seed.fX, p1Seed.fY, p12.fX, p12.fY);
H A DPathOpsCubicIntersectionTest.cpp583 SkDPoint p10 = cubic1.ptAtT(t10); local
587 p10.fX, p10.fY, p1Seed.fX, p1Seed.fY, p12.fX, p12.fY);
/external/libunwind/tests/
H A Dia64-test-rbs-asm.S158 (p8) tnat.z p10, p0 = loc##n; \
159 (p9) cmp.ne p10, p0 = r16, loc##n; \
161 (p10) mov r8 = -n; \
162 (p10) br.cond.spnt.many .fail
/external/deqp/framework/delibs/deimage/
H A DdeImage.c148 deARGB p10 = deImage_getPixel(srcImage, x1, y0); local
151 deARGB pix = deARGB_add(deARGB_add(deARGB_multiply(p00, f00), deARGB_multiply(p10, f10)),
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DRBBITestMonkey.java1471 int p10 = p1;
1472 while (p10>0 && fSpSet.contains(cAt(p10))) {
1473 p10 = moveBack(p10);
1475 while (p10>0 && fCloseSet.contains(cAt(p10))) {
1476 p10 = moveBack(p10);
1478 if (fSTermSet.contains(cAt(p10)) || fATermSe
[all...]
/external/icu/icu4c/source/i18n/
H A Dplurrule.cpp1479 static int32_t p10[] = {1, 10, 100, 1000, 10000};
1485 double scaledN = n * p10[numFractionDigits];
1504 double scaledN = n * p10[ndigits];
/external/llvm/test/MC/ARM/
H A Ddiagnostics.s154 @ p10 and p11 are reserved for NEON
155 mcr p10, #2, r5, c1, c1, #4
446 cdp2hi p10, #0, c6, c12, c0, #7
/external/icu/icu4c/source/test/intltest/
H A Drbbitst.cpp2817 int p10 = p1; local
2818 while (fSpSet->contains(cAt(p10))) {
2819 p10 = moveBack(p10);
2821 while (fCloseSet->contains(cAt(p10))) {
2822 p10 = moveBack(p10);
2824 if (fSTermSet->contains(cAt(p10)) || fATermSet->contains(cAt(p10))) {
/external/skia/src/utils/
H A DSkTextureCompressor_ASTC.cpp1475 const int p10 = this->getWeight(unquantizedValues, idx + fWeightDimX, dualPlane);
1483 const int weight = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4;
/external/skia/src/core/
H A DSkGeometry.cpp1300 Sk2s p10 = p1 - p0;
1302 Sk2s C = ww * p10;
/external/v8/src/arm/
H A Dassembler-arm.h473 p10 = 10, enumerator in enum:v8::internal::Coprocessor

Completed in 1717 milliseconds

12