/external/deqp/framework/common/ |
D | tcuBilinearImageCompare.cpp | 74 inline deUint8 interpolateChannel (deUint32 fx1, deUint32 fy1, deUint8 p00, deUint8 p01, deUint8 p1… in interpolateChannel() argument 79 const deUint32 sum = fx0*fy0*p00 + fx1*fy0*p10 + fx0*fy1*p01 + fx1*fy1*p11; in interpolateChannel() 99 deUint32 p00 = readRGBA8Raw(access, x0, y0); in bilinearSampleRGBA8() local 106 …res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), ge… in bilinearSampleRGBA8() 107 …res |= interpolateChannel(fx1, fy1, getChannel<1>(p00), getChannel<1>(p01), getChannel<1>(p10), ge… in bilinearSampleRGBA8() 108 …res |= interpolateChannel(fx1, fy1, getChannel<2>(p00), getChannel<2>(p01), getChannel<2>(p10), ge… in bilinearSampleRGBA8() 109 …res |= interpolateChannel(fx1, fy1, getChannel<3>(p00), getChannel<3>(p01), getChannel<3>(p10), ge… in bilinearSampleRGBA8()
|
D | tcuTexLookupVerifier.cpp | 100 Vec4 p00; //!< (0, 0) member 108 dst.p00 = lookup<float>(level, sampler, x0, y0, z); in lookupQuad() 164 const Vec4 d0 = abs(quad.p10 - quad.p00); in computeBilinearSearchStepFromFloatQuad() 165 const Vec4 d1 = abs(quad.p01 - quad.p00); in computeBilinearSearchStepFromFloatQuad() 210 return min(quad.p00, min(quad.p10, min(quad.p01, quad.p11))); in min() 215 return max(quad.p00, max(quad.p10, max(quad.p01, quad.p11))); in max() 308 const Vec4 c0 = quad.p00*(1.0f - a) + quad.p10*a; in isBilinearRangeValid() 340 …const Vec4 c0 = quad0.p00*(1.0f-a)*(1.0f-b) + quad0.p10*a*(1.0f-b) + quad0.p01*(1.0f-a)*b + quad0… in isTrilinearRangeValid() 341 …const Vec4 c1 = quad1.p00*(1.0f-a)*(1.0f-b) + quad1.p10*a*(1.0f-b) + quad1.p01*(1.0f-a)*b + quad1… in isTrilinearRangeValid() 409 …const Vec4 c0 = quad0.p00*(1.0f-a0)*(1.0f-b0) + quad0.p10*a0*(1.0f-b0) + quad0.p01*(1.0f-a0)*b0 +… in is2DTrilinearFilterResultValid() [all …]
|
D | tcuFuzzyImageCompare.cpp | 140 deUint32 p00 = readUnorm8<NumChannels>(src, i0, j0); in bilinearSample() local 149 float f = (getChannel(p00, c)*(1.0f-a)*(1.0f-b)) + in bilinearSample()
|
D | tcuTexture.cpp | 1409 Vec4 p00 = (i0UseBorder || j0UseBorder) ? sampler.borderColor : lookup(access, i0, j0, depth); in sampleLinear2D() local 1415 return (p00*(1.0f-a)*(1.0f-b)) + in sampleLinear2D() 1445 Vec4 p00 = (i0UseBorder || j0UseBorder) ? sampler.borderColor : lookup(access, i0, j0, offset.z()); in sampleLinear2D() local 1451 return (p00*(1.0f-a)*(1.0f-b)) + in sampleLinear2D() 1514 …float p00 = execCompare(p00Clr, sampler.compare, sampler.compareChannel, ref, isFixedPointDepthFor… in sampleLinear2DCompare() local 1520 return (p00*(1.0f-a)*(1.0f-b)) + in sampleLinear2DCompare()
|
D | tcuCompressedTexture.cpp | 2333 const deUint32 p00 = unquantizedWeights[(v0) * numWeightsPerTexel + texelWeightNdx]; in interpolateWeights() local 2338 …dst[texelY*blockWidth + texelX].w[texelWeightNdx] = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >>… in interpolateWeights()
|
/external/deqp/modules/gles2/performance/ |
D | es2pTextureCases.cpp | 112 Vec2 p00 = (m_coordTransform * Vec3(0.0f, 0.0f, 1.0f)).swizzle(0,1); in init() local 117 m_attributes.push_back(AttribSpec("a_coords", Vec4(p00.x(), p00.y(), 0.0f, 0.0f), in init() 124 …log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestL… in init()
|
D | es2pShaderOperatorTests.cpp | 218 , p00 (p00_) in AttribSpec() 228 tcu::Vec4 p00; //!< Bottom left. member 368 …dst[dstNdx++] = triQuadInterpolate((XF), (YF), tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spe… in generateVertices()
|
/external/deqp/modules/gles3/performance/ |
D | es3pTextureCases.cpp | 120 Vec2 p00 = (m_coordTransform * Vec3(0.0f, 0.0f, 1.0f)).swizzle(0,1); in init() local 125 m_attributes.push_back(AttribSpec("a_coords", Vec4(p00.x(), p00.y(), 0.0f, 0.0f), in init() 132 …log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestL… in init()
|
D | es3pShaderOperatorTests.cpp | 218 , p00 (p00_) in AttribSpec() 228 tcu::Vec4 p00; //!< Bottom left. member 368 …dst[dstNdx++] = triQuadInterpolate((XF), (YF), tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spe… in generateVertices()
|
/external/deqp/modules/glshared/ |
D | glsShaderPerformanceMeasurer.hpp | 50 , p00 (p00_) in AttribSpec() 60 tcu::Vec4 p00; //!< Bottom left. member
|
D | glsShaderPerformanceMeasurer.cpp | 93 …izeX)*numComponents + compNdx] = triQuadInterpolate(xf, yf, tcu::Vec4(spec.p00[compNdx], spec.p01[… in generateVertices()
|
/external/chromium_org/third_party/webrtc/system_wrappers/source/ |
D | timestamp_extrapolator.cc | 130 double p00 = 1 / _lambda * (_P[0][0] - (K[0] * tMs * _P[0][0] + K[0] * _P[1][0])); in Update() local 134 _P[0][0] = p00; in Update()
|
/external/opencv/cv/src/ |
D | cvposit.cpp | 298 float p00 = ata11 * ata22 - ata12 * ata12; in icvPseudoInverse3D() local 306 det += ata00 * p00; in icvPseudoInverse3D() 319 b[k] = (p00 * a0 + p01 * a1 + p02 * a2) * inv_det; in icvPseudoInverse3D()
|
D | cvcontours.cpp | 1436 CvLinkedRunPoint* p00; in icvFindContoursInInterval() local 1440 CV_READ_SEQ_ELEM( p00, reader ); in icvFindContoursInInterval() 1441 p01 = p00; in icvFindContoursInInterval() 1443 if( !p00->link ) in icvFindContoursInInterval() 1450 CV_WRITE_SEQ_ELEM( p00->pt, writer ); in icvFindContoursInInterval() 1451 p_temp = p00; in icvFindContoursInInterval() 1452 p00 = p00->link; in icvFindContoursInInterval() 1455 while( p00 != p01 ); in icvFindContoursInInterval()
|
/external/deqp/framework/delibs/deimage/ |
D | deImage.c | 147 deARGB p00 = deImage_getPixel(srcImage, x0, y0); in deImage_scale() local 151 deARGB pix = deARGB_add(deARGB_add(deARGB_multiply(p00, f00), deARGB_multiply(p10, f10)), in deImage_scale()
|
/external/chromium-trace/trace-viewer/src/base/ |
D | quad.js | 20 var p00 = vec2.createXY(0, 0);
|
/external/chromium_org/third_party/skia/src/utils/ |
D | SkTextureCompressor_ASTC.cpp | 1473 const int p00 = this->getWeight(unquantizedValues, idx, dualPlane); in infillWeight() local 1483 const int weight = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4; in infillWeight()
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/resources/ |
D | final-url-en | 25003 http://www.apologeticsindex.org/p00.html
|