HomeSort by relevance Sort by last modified time
    Searched refs:i1 (Results 351 - 375 of 578) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/graphics/filters/
FEComposite.cpp 130 unsigned char i1 = *source; local
134 result += scaledK1 * i1 * i2;
136 result += k2 * i1;
  /frameworks/rs/
rsAllocation.cpp 458 const uint16_t *i1 = static_cast<uint16_t *>(in.getElement(0, y*2)); local
462 *oPtr = rsBoxFilter565(i1[0], i1[1], i2[0], i2[1]);
464 i1 += 2;
476 const uint32_t *i1 = static_cast<uint32_t *>(in.getElement(0, y*2)); local
480 *oPtr = rsBoxFilter8888(i1[0], i1[1], i2[0], i2[1]);
482 i1 += 2;
494 const uint8_t *i1 = static_cast<uint8_t *>(in.getElement(0, y*2)); local
498 *oPtr = (uint8_t)(((uint32_t)i1[0] + i1[1] + i2[0] + i2[1]) * 0.25f)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Sphere.java 318 int i1 = i0 + 1; local
325 idxBuf.put((short) i1);
327 idxBuf.put((short) i1++);
333 idxBuf.put((short) i1);
334 idxBuf.put((short) i1++);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 237 [i1]:cs_open slash [i3]:escape [i2]:cs_close
246 [i1]:cs_open slash [i3]:autoescape [i2]:cs_close
255 [i1]:cs_open slash [i3]:with [i2]:cs_close
265 [i1]:cs_open slash [i3]:loop [i2]:cs_close
276 [i1]:cs_open slash [i3]:loop [i2]:cs_close
288 commands [i1]:cs_open slash [i4]:loop [i2]:cs_close
300 [i1]:cs_open slash [i3]:each [i2]:cs_close
310 [i1]:cs_open slash [i3]:alt [i2]:cs_close
319 [i1]:cs_open slash [i3]:def [i2]:cs_close
370 [i1]:cs_open slash [i3]:inline [i2]:cs_clos
    [all...]
  /external/tcpdump/
print-atalk.c 554 int i1, i2, i3; local
559 if (sscanf(line, "%d.%d.%d %256s", &i1, &i2, &i3,
562 i3 |= ((i1 << 8) | i2) << 8;
563 else if (sscanf(line, "%d.%d %256s", &i1, &i2,
566 i3 = (((i1 << 8) | i2) << 8) | 255;
  /external/quake/quake/src/QW/client/
mathlib.c 545 int GreatestCommonDivisor (int i1, int i2)
547 if (i1 > i2)
550 return (i1);
551 return GreatestCommonDivisor (i2, i1 % i2);
555 if (i1 == 0)
557 return GreatestCommonDivisor (i1, i2 % i1);
  /external/quake/quake/src/WinQuake/
mathlib.cpp 547 int GreatestCommonDivisor (int i1, int i2)
549 if (i1 > i2)
552 return (i1);
553 return GreatestCommonDivisor (i2, i1 % i2);
557 if (i1 == 0)
559 return GreatestCommonDivisor (i1, i2 % i1);
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
transform.c 111 int i0, i1, i2, i3; local
121 i1 = buf[1] - buf[3];
132 i6 = (i1 + r3) >> 1;
134 i7 = (i1 - r3) >> 1;
139 i1 = buf[ 9] - buf[11];
160 i0 = i1 + r3;
162 i2 = i1 - r3;
  /gdk/samples/quake/jni/
mathlib.cpp 547 int GreatestCommonDivisor (int i1, int i2)
549 if (i1 > i2)
552 return (i1);
553 return GreatestCommonDivisor (i2, i1 % i2);
557 if (i1 == 0)
559 return GreatestCommonDivisor (i1, i2 % i1);
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_fast_fdct4x4_armv6.asm 26 ldrd r4, r5, [r0] ; [i1 | i0] [i3 | i2]
34 qadd16 r6, r4, r5 ; [i1+i2 | i0+i3] = [b1 | a1] without shift
35 qsub16 r7, r4, r5 ; [i1-i2 | i0-i3] = [c1 | d1] without shift
43 smuad r4, r6, lr ; o0 = (i1+i2)*8 + (i0+i3)*8
44 smusd r5, r6, lr ; o2 = (i1+i2)*8 - (i0+i3)*8
133 qadd16 r4, r3, r0 ; a1 = [i1+i13 | i0+i12]
136 qsub16 r7, r3, r0 ; d1 = [i1-i13 | i0-i12]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 1058 Idx i1, i2, is, id, delta, sbase;
1077 i1 = src1->nelem - 1;
1082 if (src1->elems[i1] == src2->elems[i2])
1085 while (REG_VALID_INDEX (id) && dest->elems[id] > src1->elems[i1])
1088 if (! REG_VALID_INDEX (id) || dest->elems[id] != src1->elems[i1])
1089 dest->elems[--sbase] = src1->elems[i1];
1091 if (! REG_VALID_INDEX (--i1) || ! REG_VALID_INDEX (--i2))
1096 else if (src1->elems[i1] < src2->elems[i2])
1103 if (! REG_VALID_INDEX (--i1))
1149 Idx i1, i2, id
1056 Idx i1, i2, is, id, delta, sbase; local
1147 Idx i1, i2, id; local
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
colorcheckertest.cpp 795 // detected color checkers bounded by row i1, row i2 and column j1 and column j2
797 void ColorCheckerTest::findBestMatch(int i1, int i2, int j1, int j2) {
798 int numHorizontalGrid = i2 - i1 + 1;
803 ALOGV("i1, j2, j1, j2 is %d, %d, %d, %d", i1, i2, j1, j2);
811 if (mCandidateColors[i1 + i][j1 + j] != NULL) {
812 error += mCandidateColors[i1 + i][j1 + j]->squareDistance<int>(
828 if (mCandidateColors[i1 + id][j1 + jd] != NULL) {
829 error += mCandidateColors[i1 + id][j1 + jd]->
    [all...]
  /external/openssl/crypto/x509v3/
v3_addr.c 955 int prefixlen, i1, i2, delim, length;
1021 i1 = strspn(s, addr_chars);
1022 i2 = i1 + strspn(s + i1, " \t");
1024 s[i1] = '\0';
1046 i1 = i2 + strspn(s + i2, " \t");
1047 i2 = i1 + strspn(s + i1, addr_chars);
1048 if (i1 == i2 || s[i2] != '\0') {
1053 if (a2i_ipadd(max, s + i1) != length)
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 628 int i1, j1; local
633 i1 = y >> shift;
638 i1 = y;
641 if( j1 < 0 || j1 >= width || i1 < 0 || i1 >= height )
644 mdata = mdata0 + i1*width + j1;
653 line_end[k].y = i1;
676 int i1, j1; local
681 i1 = y >> shift;
686 i1 = y
    [all...]
  /external/valgrind/main/VEX/switchback/
test_bzip2.c     [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.c     [all...]
  /external/valgrind/main/memcheck/tests/
origin5-bz2.c     [all...]
varinfo6.c     [all...]
  /external/valgrind/main/perf/
bz2.c     [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
DESEngine.java 382 int i1, i2; local
384 i1 = newKey[i];
387 newKey[i] = ((i1 & 0x00fc0000) << 6) | ((i1 & 0x00000fc0) << 10)
390 newKey[i + 1] = ((i1 & 0x0003f000) << 12) | ((i1 & 0x0000003f) << 16)
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DES.java 265 int i1, i2; local
267 i1 = newKey[i];
270 newKey[i] = ((i1 & 0x00fc0000) << 6) | ((i1 & 0x00000fc0) << 10) | ((i2 & 0x00fc0000) >>> 10)
273 newKey[i + 1] = ((i1 & 0x0003f000) << 12) | ((i1 & 0x0000003f) << 16) | ((i2 & 0x0003f000) >>> 4)
  /external/openssl/crypto/des/
DES.xs 120 unsigned long i1,i2;
127 i1=c[4]|(c[5]<<8)|(c[6]<<16)|(c[7]<<24);
129 sv_setiv(s1,i1);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1PRNG_SecureRandomTest.java 174 int i1 = k /n1; local
178 assertTrue("non-equality: i1="+ i1 +" i2="+i2 +" i3="+i3 +" i4=" +i4,
179 bytes1[i1][i2] == bytes2[i3][i4]);
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 187 final int i1 = methoddescriptor.indexOf ('('); local
190 if ((i1 < 0) || (i2 <= 0) || (i1 >= i2) || (i2 >= methoddescriptor.length () - 1))
  /external/libffi/src/sparc/
v8.S 51 mov %i1, %o1 ! (delay)
132 st %i1, [%fp+68+4]
171 ld [%fp-4], %i1

Completed in 834 milliseconds

<<11121314151617181920>>