HomeSort by relevance Sort by last modified time
    Searched defs:weight1 (Results 1 - 4 of 4) sorted by null

  /external/pixman/pixman/
pixman-android.c 197 int weight1, weight2; local
204 /* both weight1 and weight2 are smaller than BILINEAR_INTERPOLATION_RANGE */
206 weight1 = BILINEAR_INTERPOLATION_RANGE - weight2;
210 weight1 = weight2 = BILINEAR_INTERPOLATION_RANGE / 2;
219 weight1 = 0;
223 weight1 = 0;
240 dst, buf1, buf2, weight1, weight2, 0, 0, left_pad);
249 dst, buf1, buf2, weight1, weight2,
256 dst, src1, src2, weight1, weight2, vx, unit_x, width);
266 dst, buf1, buf2, weight1, weight2
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic3DLUT.cpp 106 int4 weight1 = (int4)0x8000 - weight2; local
124 uint4 yz00 = ((v000 * weight1.x) + (v100 * weight2.x)) >> (int4)7;
125 uint4 yz10 = ((v010 * weight1.x) + (v110 * weight2.x)) >> (int4)7;
126 uint4 yz01 = ((v001 * weight1.x) + (v101 * weight2.x)) >> (int4)7;
127 uint4 yz11 = ((v011 * weight1.x) + (v111 * weight2.x)) >> (int4)7;
129 uint4 z0 = ((yz00 * weight1.y) + (yz10 * weight2.y)) >> (int4)15;
130 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (int4)15;
132 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (int4)15;
143 ALOGE("weight1 %08x %08x %08x %08x", weight1.x, weight1.y, weight1.z, weight1.w)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
MeteringTest.java 234 int weight1; local
246 weight1 = mRandomGenerator.nextInt(100) + 1;
247 runSingleTest(square1, square1, weight1);
255 square1, weight1, weight2));
257 "Running test for %d 1x1 square with weights %d, %d", square1, weight1, weight2));
266 weight1 = mRandomGenerator.nextInt(1000) + 1;
267 runSingleTest(square1, square1, weight1);
270 weight2 = weight1;
275 "Running test for %d, %d 1x1 square with weight %d", square1, square2, weight1));
285 weight1 = mRandomGenerator.nextInt(1000) + 1
340 int[] weight1 = new int[2]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voAMRWBEnc.c 1354 Word16 weight1, weight2; local
    [all...]

Completed in 254 milliseconds