/external/opencv3/modules/cudalegacy/src/cuda/ |
D | NCVPyramid.cu | 54 …> struct __average4_CN {static __host__ __device__ T _average4_CN(const T &p00, const T &p01, cons… 57 static __host__ __device__ T _average4_CN(const T &p00, const T &p01, const T &p10, const T &p11) in _average4_CN() 60 out.x = ((Ncv32s)p00.x + p01.x + p10.x + p11.x + 2) / 4; in _average4_CN() 65 static __host__ __device__ float1 _average4_CN(const float1 &p00, const float1 &p01, const float1 &… in _average4_CN() 68 out.x = (p00.x + p01.x + p10.x + p11.x) / 4; in _average4_CN() 73 static __host__ __device__ double1 _average4_CN(const double1 &p00, const double1 &p01, const doubl… in _average4_CN() 76 out.x = (p00.x + p01.x + p10.x + p11.x) / 4; in _average4_CN() 81 static __host__ __device__ T _average4_CN(const T &p00, const T &p01, const T &p10, const T &p11) in _average4_CN() 84 out.x = ((Ncv32s)p00.x + p01.x + p10.x + p11.x + 2) / 4; in _average4_CN() 85 out.y = ((Ncv32s)p00.y + p01.y + p10.y + p11.y + 2) / 4; in _average4_CN() [all …]
|
/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 | 95 Vec4 p00; //!< (0, 0) member 103 dst.p00 = lookup<float>(level, sampler, x0, y0, z); in lookupQuad() 159 const Vec4 d0 = abs(quad.p10 - quad.p00); in computeBilinearSearchStepFromFloatQuad() 160 const Vec4 d1 = abs(quad.p01 - quad.p00); 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() 305 const Vec4 c0 = quad.p00*(1.0f - a) + quad.p10*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… 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… in isTrilinearRangeValid() 422 …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 | 142 deUint32 p00 = readUnorm8<NumChannels>(src, i0, j0); in bilinearSample() local 151 float f = (getChannel(p00, c)*(1.0f-a)*(1.0f-b)) + in bilinearSample()
|
D | tcuTexture.cpp | 1788 …Vec4 p00 = (i0UseBorder || j0UseBorder) ? lookupBorder(access.getFormat(), sampler) : lookup(acces… in sampleLinear2D() local 1794 return (p00*(1.0f-a)*(1.0f-b)) + in sampleLinear2D() 1857 …float p00 = execCompare(p00Clr, sampler.compare, sampler.compareChannel, ref, isFixedPointDepthFor… in sampleLinear2DCompare() local 1863 return (p00*(1.0f-a)*(1.0f-b)) + in sampleLinear2DCompare()
|
D | tcuAstcUtil.cpp | 1282 const deUint32 p00 = unquantizedWeights[(v0) * numWeightsPerTexel + texelWeightNdx]; in interpolateWeights() local 1287 …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/opencv3/modules/calib3d/test/ |
D | test_cameracalibration_artificial.cpp | 67 Point3f p00 = points[0]; in calcRvec() local 71 Vec3d ex(p10.x - p00.x, p10.y - p00.y, p10.z - p00.z); in calcRvec() 72 Vec3d ey(p01.x - p00.x, p01.y - p00.y, p01.z - p00.z); in calcRvec()
|
/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/webrtc/webrtc/system_wrappers/source/ |
D | timestamp_extrapolator.cc | 130 double p00 = 1 / _lambda * in Update() local 138 _pP[0][0] = p00; in Update()
|
/external/opencv/cv/src/ |
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()
|
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()
|
/external/opencv3/modules/calib3d/src/ |
D | posit.cpp | 298 float p00 = ata11 * ata22 - ata12 * ata12; in icvPseudoInverse3D() local 307 det += ata00 * p00; in icvPseudoInverse3D() 320 b[k] = (p00 * a0 + p01 * a1 + p02 * a2) * inv_det; in icvPseudoInverse3D()
|
/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/opencv3/modules/imgproc/src/ |
D | contours.cpp | 1588 CvLinkedRunPoint* p00; in icvFindContoursInInterval() local 1592 CV_READ_SEQ_ELEM( p00, reader ); in icvFindContoursInInterval() 1593 p01 = p00; in icvFindContoursInInterval() 1595 if( !p00->link ) in icvFindContoursInInterval() 1602 CV_WRITE_SEQ_ELEM( p00->pt, writer ); in icvFindContoursInInterval() 1603 p_temp = p00; in icvFindContoursInInterval() 1604 p00 = p00->link; in icvFindContoursInInterval() 1607 while( p00 != p01 ); in icvFindContoursInInterval()
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
D | btConvexHullComputer.cpp | 627 UWord p00 = mul(low(a), low(b)); in mul() local 636 p00 += p0110; in mul() 637 if (p00 < p0110) in mul() 641 resLow = p00; in mul()
|
/external/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/opencv3/modules/objdetect/src/ |
D | hog.cpp | 337 T p02 = imgPtr + xmap[x+1], p00 = imgPtr + xmap[x-1]; in computeGradient() local 343 … _mm_set_ps(lut[p30[0]], lut[p20[0]], lut[p10[0]], lut[p00[0]])); in computeGradient() 345 … _mm_set_ps(lut[p30[1]], lut[p20[1]], lut[p10[1]], lut[p00[1]])); in computeGradient() 347 … _mm_set_ps(lut[p30[2]], lut[p20[2]], lut[p10[2]], lut[p00[2]])); in computeGradient()
|
/external/opencv3/modules/hal/include/opencv2/hal/ |
D | intrin_sse.hpp | 1343 __m128i p00 = _mm_unpacklo_epi16(ab0, c0); in v_store_interleave() local 1348 __m128i p10 = _mm_unpacklo_epi32(p00, p01); in v_store_interleave() 1349 __m128i p11 = _mm_unpackhi_epi32(p00, p01); in v_store_interleave()
|
/external/chromium-trace/catapult/tracing/test_data/ |
D | ddms_calculator_start.trace | 139160 ���p00]�� 153489 ���p00 ��� 347069 �X�p00!%�
|