HomeSort by relevance Sort by last modified time
    Searched refs:weight2 (Results 1 - 7 of 7) sorted by null

  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
colorcube.rs 47 int4 weight2 = baseCoord & 0xffff;
48 int4 weight1 = (int4)0x10000 - weight2;
59 uint4 yz00 = ((v000 * weight1.x) + (v100 * weight2.x)) >> (int4)8;
60 uint4 yz10 = ((v010 * weight1.x) + (v110 * weight2.x)) >> (int4)8;
61 uint4 yz01 = ((v001 * weight1.x) + (v101 * weight2.x)) >> (int4)8;
62 uint4 yz11 = ((v011 * weight1.x) + (v111 * weight2.x)) >> (int4)8;
64 uint4 z0 = ((yz00 * weight1.y) + (yz10 * weight2.y)) >> (int4)16;
65 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (int4)16;
67 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (int4)16;
80 //rsDebug("weight2", weight2)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
colorcube.rs 47 int4 weight2 = baseCoord & 0xffff;
48 int4 weight1 = (int4)0x10000 - weight2;
59 uint4 yz00 = ((v000 * weight1.x) + (v100 * weight2.x)) >> (int4)8;
60 uint4 yz10 = ((v010 * weight1.x) + (v110 * weight2.x)) >> (int4)8;
61 uint4 yz01 = ((v001 * weight1.x) + (v101 * weight2.x)) >> (int4)8;
62 uint4 yz11 = ((v011 * weight1.x) + (v111 * weight2.x)) >> (int4)8;
64 uint4 z0 = ((yz00 * weight1.y) + (yz10 * weight2.y)) >> (int4)16;
65 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (int4)16;
67 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (int4)16;
80 //rsDebug("weight2", weight2)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
MeteringTest.java 235 int weight2; local
250 weight2 = mRandomGenerator.nextInt(100) + 901;
251 runSingleTest(square2, square2, weight2);
255 square1, weight1, weight2));
257 "Running test for %d 1x1 square with weights %d, %d", square1, weight1, weight2));
270 weight2 = weight1;
271 runSingleTest(square2, square2, weight2);
289 weight2 = weight1;
290 runSingleTest(square2, square2 + 1, weight2);
308 weight2 = weight1
341 int[] weight2 = new int[2]; local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic3DLUT.cpp 107 int4 weight2 = baseCoord & 0x7fff; local
108 int4 weight1 = (int4)0x8000 - weight2;
126 uint4 yz00 = ((v000 * weight1.x) + (v100 * weight2.x)) >> (int4)7;
127 uint4 yz10 = ((v010 * weight1.x) + (v110 * weight2.x)) >> (int4)7;
128 uint4 yz01 = ((v001 * weight1.x) + (v101 * weight2.x)) >> (int4)7;
129 uint4 yz11 = ((v011 * weight1.x) + (v111 * weight2.x)) >> (int4)7;
131 uint4 z0 = ((yz00 * weight1.y) + (yz10 * weight2.y)) >> (int4)15;
132 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (int4)15;
134 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (int4)15;
146 ALOGE("weight2 %08x %08x %08x %08x", weight2.x, weight2.y, weight2.z, weight2.w)
    [all...]
  /external/openfst/src/include/fst/
lookahead-filter.h 259 void FilterFinal(Weight *weight1, Weight *weight2) const {
260 filter_.FilterFinal(weight1, weight2);
382 void FilterFinal(Weight *weight1, Weight *weight2) const {
383 filter_.FilterFinal(weight1, weight2);
516 void FilterFinal(Weight *weight1, Weight *weight2) const {
517 filter_.FilterFinal(weight1, weight2);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voAMRWBEnc.c 1352 Word16 weight1, weight2; local
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java     [all...]

Completed in 2147 milliseconds