Home
last modified time | relevance | path

Searched refs:p01 (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
Dintrinsic_convolve3x3.rs32 float4 p01 = convert_float4(rsGetElementAt_uchar4(gIn, x, y1));
41 p01 *= gCoeffs[1];
50 p00 += p01;
73 float3 p01 = convert_float3(rsGetElementAt_uchar3(gIn, x, y1));
82 p01 *= gCoeffs[1];
91 p00 += p01;
114 float2 p01 = convert_float2(rsGetElementAt_uchar2(gIn, x, y1));
123 p01 *= gCoeffs[1];
132 p00 += p01;
155 float p01 = rsGetElementAt_uchar(gIn, x, y1);
[all …]
Dintrinsic_resize.rs67 float4 p01 = convert_float4(rsGetElementAt_uchar4(gIn, xs1, ys0));
70 float4 p0 = cubicInterpolate_F4(p00, p01, p02, p03, xf);
117 float3 p01 = convert_float3(rsGetElementAt_uchar3(gIn, xs1, ys0));
120 float3 p0 = cubicInterpolate_F3(p00, p01, p02, p03, xf);
167 float2 p01 = convert_float2(rsGetElementAt_uchar2(gIn, xs1, ys0));
170 float2 p0 = cubicInterpolate_F2(p00, p01, p02, p03, xf);
217 float p01 = (float)(rsGetElementAt_uchar(gIn, xs1, ys0));
220 float p0 = cubicInterpolate_F1(p00, p01, p02, p03, xf);
267 float4 p01 = rsGetElementAt_float4(gIn, xs1, ys0);
270 float4 p0 = cubicInterpolate_F4(p00, p01, p02, p03, xf);
[all …]
/cts/tests/tests/media/src/android/media/cts/
DDecodeAccuracyTestBase.java1913 double p01 = (1.0 - u) * v; in shrinkAndScaleBilinear() local
1934 p00 * (double) rgb00[k] + p01 * (double) rgb01[k] in shrinkAndScaleBilinear()