HomeSort by relevance Sort by last modified time
    Searched refs:p00 (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/native/opengl/libagl/
mipmap.cpp 64 uint32_t p00 = src[offset]; local
68 p00 = (p00 | (p00 << 16)) & mask;
72 uint32_t grb = ((p00 + p10 + p01 + p11) >> 2) & mask;
86 uint32_t p00 = src[offset]; local
90 uint32_t r = ((p00>>11)+(p10>>11)+(p01>>11)+(p11>>11)+2)>>2;
91 uint32_t g = (((p00>>6)+(p10>>6)+(p01>>6)+(p11>>6)+2)>>2)&0x3F;
92 uint32_t b = ((p00&0x3E)+(p10&0x3E)+(p01&0x3E)+(p11&0x3E)+4)>>3;
93 uint32_t a = ((p00&1)+(p10&1)+(p01&1)+(p11&1)+2)>>2
106 uint32_t p00 = src[offset]; local
145 uint32_t p00 = src[c+offset]; local
162 uint32_t p00 = src[offset]; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_convolve3x3.rs 31 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y1));
40 p00 *= gCoeffs[0];
50 p00 += p01;
55 p22 += p00;
72 float3 p00 = convert_float3(rsGetElementAt_uchar3(gIn, x1, y1));
81 p00 *= gCoeffs[0];
91 p00 += p01;
96 p22 += p00;
113 float2 p00 = convert_float2(rsGetElementAt_uchar2(gIn, x1, y1));
122 p00 *= gCoeffs[0]
    [all...]
intrinsic_resize.rs 66 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, xs0, ys0));
70 float4 p0 = cubicInterpolate_F4(p00, p01, p02, p03, xf);
116 float3 p00 = convert_float3(rsGetElementAt_uchar3(gIn, xs0, ys0));
120 float3 p0 = cubicInterpolate_F3(p00, p01, p02, p03, xf);
166 float2 p00 = convert_float2(rsGetElementAt_uchar2(gIn, xs0, ys0));
170 float2 p0 = cubicInterpolate_F2(p00, p01, p02, p03, xf);
216 float p00 = (float)(rsGetElementAt_uchar(gIn, xs0, ys0));
220 float p0 = cubicInterpolate_F1(p00, p01, p02, p03, xf);
266 float4 p00 = rsGetElementAt_float4(gIn, xs0, ys0);
270 float4 p0 = cubicInterpolate_F4(p00, p01, p02, p03, xf)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
convolve3x3.rs 34 float4 p00 = rsUnpackColor8888(gPixels[x1 + gWidth * y1]);
44 p00 *= gCoeffs[0];
54 p00 += p01;
59 p22 += p00;
  /external/deqp/modules/glshared/
glsShaderPerformanceMeasurer.hpp 50 , p00 (p00_)
60 tcu::Vec4 p00; //!< Bottom left. member in struct:deqp::gls::AttribSpec
glsShaderPerformanceMeasurer.cpp 93 dst[getVtxIndex(x, y, gridSizeX)*numComponents + compNdx] = triQuadInterpolate(xf, yf, tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spec.p10[compNdx], spec.p11[compNdx]));
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
grain.rs 50 uint p00 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y1);
60 p00 += p01;
65 p22 += p00;
resize.rs 64 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, xs0, ys0));
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
grain.rs 50 uint p00 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y1);
60 p00 += p01;
65 p22 += p00;
resize.rs 64 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, xs0, ys0));
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
grain.rs 50 uint p00 = 56 * rsGetElementAt_uchar(gBlendSource, x1, y1);
60 p00 += p01;
65 p22 += p00;
resize.rs 64 float4 p00 = convert_float4(rsGetElementAt_uchar4(gIn, xs0, ys0));
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 74 inline deUint8 interpolateChannel (deUint32 fx1, deUint32 fy1, deUint8 p00, deUint8 p01, deUint8 p10, deUint8 p11)
79 const deUint32 sum = fx0*fy0*p00 + fx1*fy0*p10 + fx0*fy1*p01 + fx1*fy1*p11;
99 deUint32 p00 = readRGBA8Raw(access, x0, 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;
tcuFuzzyImageCompare.cpp 142 deUint32 p00 = readUnorm8<NumChannels>(src, i0, j0); local
151 float f = (getChannel(p00, c)*(1.0f-a)*(1.0f-b)) +
tcuTexLookupVerifier.cpp 95 Vec4 p00; //!< (0, 0) member in struct:tcu::ColorQuad
103 dst.p00 = lookup<float>(level, sampler, x0, y0, z);
159 const Vec4 d0 = abs(quad.p10 - quad.p00);
160 const Vec4 d1 = abs(quad.p01 - quad.p00);
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)));
305 const Vec4 c0 = quad.p00*(1.0f - a) + quad.p10*a;
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;
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;
422 const Vec4 c0 = quad0.p00*(1.0f-a0)*(1.0f-b0) + quad0.p10*a0*(1.0f-b0) + quad0.p01*(1.0f-a0)*b0 + quad0.p11*a0*b0
    [all...]
  /external/deqp/modules/gles2/performance/
es2pTextureCases.cpp 112 Vec2 p00 = (m_coordTransform * Vec3(0.0f, 0.0f, 1.0f)).swizzle(0,1); local
117 m_attributes.push_back(AttribSpec("a_coords", Vec4(p00.x(), p00.y(), 0.0f, 0.0f),
124 log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestLog::EndMessage;
es2pShaderOperatorTests.cpp 218 , p00 (p00_)
228 tcu::Vec4 p00; //!< Bottom left. member in struct:deqp::gles2::Performance::__anon18392::OperatorPerformanceCase::AttribSpec
368 dst[dstNdx++] = triQuadInterpolate((XF), (YF), tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spec.p10[compNdx], spec.p11[compNdx]))
    [all...]
  /external/deqp/modules/gles3/performance/
es3pTextureCases.cpp 120 Vec2 p00 = (m_coordTransform * Vec3(0.0f, 0.0f, 1.0f)).swizzle(0,1); local
125 m_attributes.push_back(AttribSpec("a_coords", Vec4(p00.x(), p00.y(), 0.0f, 0.0f),
132 log << TestLog::Message << "Coords: " << p00 << ", " << p10 << ", " << p01 << ", " << p11 << TestLog::EndMessage;
es3pShaderOperatorTests.cpp 218 , p00 (p00_)
228 tcu::Vec4 p00; //!< Bottom left. member in struct:deqp::gles3::Performance::__anon18679::OperatorPerformanceCase::AttribSpec
368 dst[dstNdx++] = triQuadInterpolate((XF), (YF), tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spec.p10[compNdx], spec.p11[compNdx]))
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
timestamp_extrapolator.cc 130 double p00 = 1 / _lambda * local
138 _pP[0][0] = p00;
  /external/opencv/cv/src/
cvposit.cpp 298 float p00 = ata11 * ata22 - ata12 * ata12; local
306 det += ata00 * p00;
319 b[k] = (p00 * a0 + p01 * a1 + p02 * a2) * inv_det;
cvcontours.cpp 1436 CvLinkedRunPoint* p00; local
    [all...]
  /external/deqp/framework/delibs/deimage/
deImage.c 147 deARGB p00 = deImage_getPixel(srcImage, x0, y0); local
151 deARGB pix = deARGB_add(deARGB_add(deARGB_multiply(p00, f00), deARGB_multiply(p10, f10)),
  /cts/tests/tests/media/src/android/media/cts/
DecodeAccuracyTestBase.java 1970 double p00 = (1.0 - u) * (1.0 - v); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrUtil.cpp     [all...]

Completed in 779 milliseconds

1 2