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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p5.cpp 7 double &i1 = "foo"_x1; variable
p6.cpp 6 double &i1 = 'a'_x1; // expected-error {{no matching literal operator}} variable
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-references.cpp 5 int i1, i2; member in struct:reference::A
  /external/icu4c/test/cintltst/
citertst.h 115 static void assertEqual(UCollationElements *i1, UCollationElements *i2);
  /external/llvm/utils/TableGen/
X86DisassemblerTables.h 94 /// @param i1 - The indentation level to use with stream o1.
100 uint32_t &i1,
123 /// @param i1 - The indent level to use with stream o1.
129 uint32_t &i1,
158 /// @param i1 - The indent level to use with stream o1.
165 uint32_t &i1,
223 /// @param i1 - The indent level to use with stream o1.
227 uint32_t &i1,
X86DisassemblerTables.cpp 305 uint32_t &i1,
328 i1++;
334 emitOneID(o1, i1, decision.instructionIDs[0], true);
337 emitOneID(o1, i1, decision.instructionIDs[0x00], true); // mod = 0b00
338 emitOneID(o1, i1, decision.instructionIDs[0xc0], true); // mod = 0b11
342 emitOneID(o1, i1, decision.instructionIDs[index], true);
344 emitOneID(o1, i1, decision.instructionIDs[index], true);
348 emitOneID(o1, i1, decision.instructionIDs[index], true);
352 i1--;
386 uint32_t &i1,
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
TCPageMap.h 129 const Number i1 = k >> LEAF_BITS; local
131 return root_[i1]->values[i2];
136 const Number i1 = k >> LEAF_BITS; local
138 root_[i1]->values[i2] = v;
143 const Number i1 = key >> LEAF_BITS; local
146 if (root_[i1] == NULL) {
150 root_[i1] = leaf;
231 const Number i1 = k >> (LEAF_BITS + INTERIOR_BITS); local
234 return reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2])->values[i3];
239 const Number i1 = k >> (LEAF_BITS + INTERIOR_BITS) local
247 const Number i1 = key >> (LEAF_BITS + INTERIOR_BITS); local
    [all...]
  /sdk/chimpchat/test/com/android/chimpchat/
ImageUtilsTest.java 54 * @param i1 the first image
58 private static boolean checkImagesHaveSamePixels(BufferedImage i1, BufferedImage i2) {
59 if (i1.getWidth() != i2.getWidth()) {
62 if (i1.getHeight() != i2.getHeight()) {
66 for (int y = 0; y < i1.getHeight(); y++) {
67 for (int x = 0; x < i1.getWidth(); x++) {
68 int p1 = i1.getRGB(x, y);
71 WritableRaster r1 = i1.getRaster();
  /external/chromium/chrome/browser/sync/engine/
syncer.h 148 Iterator1 i1 = begin1; local
150 while (i1 != end1 && i2 != end2) {
151 if (*i1 == *i2)
153 if (*i1 > *i2)
156 ++i1;
  /frameworks/rs/
rsUtils.h 122 static inline uint16_t rsBoxFilter565(uint16_t i1, uint16_t i2, uint16_t i3, uint16_t i4) {
123 uint32_t r = ((i1 & 0x1f) + (i2 & 0x1f) + (i3 & 0x1f) + (i4 & 0x1f));
124 uint32_t g = ((i1 >> 5) & 0x3f) + ((i2 >> 5) & 0x3f) + ((i3 >> 5) & 0x3f) + ((i4 >> 5) & 0x3f);
125 uint32_t b = ((i1 >> 11) + (i2 >> 11) + (i3 >> 11) + (i4 >> 11));
129 static inline uint32_t rsBoxFilter8888(uint32_t i1, uint32_t i2, uint32_t i3, uint32_t i4) {
130 uint32_t r = (i1 & 0xff) + (i2 & 0xff) + (i3 & 0xff) + (i4 & 0xff);
131 uint32_t g = ((i1 >> 8) & 0xff) + ((i2 >> 8) & 0xff) + ((i3 >> 8) & 0xff) + ((i4 >> 8) & 0xff);
132 uint32_t b = ((i1 >> 16) & 0xff) + ((i2 >> 16) & 0xff) + ((i3 >> 16) & 0xff) + ((i4 >> 16) & 0xff);
133 uint32_t a = ((i1 >> 24) & 0xff) + ((i2 >> 24) & 0xff) + ((i3 >> 24) & 0xff) + ((i4 >> 24) & 0xff);
  /external/bzip2/
blocksort.c 347 Bool mainGtU ( UInt32 i1,
358 AssertD ( i1 != i2, "mainGtU" );
360 c1 = block[i1]; c2 = block[i2];
362 i1++; i2++;
364 c1 = block[i1]; c2 = block[i2];
366 i1++; i2++;
368 c1 = block[i1]; c2 = block[i2];
370 i1++; i2++;
372 c1 = block[i1]; c2 = block[i2];
374 i1++; i2++
    [all...]
  /external/apache-harmony/math/src/test/java/tests/api/java/math/
BigIntegerTest.java 782 BigInteger i1 = element[0], i2 = element[1]; local
783 BigInteger res = i1.and(i2);
784 assertTrue("symmetry of and", res.equals(i2.and(i1)));
785 int len = Math.max(i1.bitLength(), i2.bitLength()) + 66;
787 assertTrue("and", (i1.testBit(i) && i2.testBit(i)) == res
798 BigInteger i1 = element[0], i2 = element[1]; local
799 BigInteger res = i1.or(i2);
800 assertTrue("symmetry of or", res.equals(i2.or(i1)));
801 int len = Math.max(i1.bitLength(), i2.bitLength()) + 66;
803 assertTrue("or", (i1.testBit(i) || i2.testBit(i)) == re
814 BigInteger i1 = element[0], i2 = element[1]; local
830 BigInteger i1 = element[0]; local
844 BigInteger i1 = element[0], i2 = element[1]; local
    [all...]
  /external/clang/test/CodeGen/
ms_struct-bitfield-init.c 36 int i1; member in struct:__anon5322
64 if (t3.i1 != 1 || t3.i4 != 4)
  /dalvik/dx/tests/084-dex-high-register-moves/
Blort.java 25 int i1 = 0; local
  /external/clang/test/SemaCXX/
qualified-id-lookup.cpp 43 int &i1 = f1(); local
54 N::f1::type& i1 = x; local
64 int i1 = N::f1::member; variable
72 int v3 = ::i1;
overload-call-copycon.cpp 9 int& i1 = copycon(x); local
29 int& i1 = copycon2(b); local
40 int& i1 = copycon3(b); local
  /frameworks/wilhelm/src/
ThreadPool.h 29 typedef void (*ClosureHandler_generic)(void *p1, void *p2, void *p3, int i1, int i2);
30 typedef void (*ClosureHandler_ppi) (void *p1, void *p2, int i1);
31 typedef void (*ClosureHandler_ppii) (void *p1, void *p2, int i1, int i2);
32 typedef void (*ClosureHandler_piipp) (void *p1, int i1, int i2, void *p2, void *p3);
  /external/clang/test/Sema/
function-redecl.c 117 extern __typeof (i0) i1;
118 extern __typeof (i1) i1;
  /external/openssl/crypto/rc4/asm/
rc4-ia64.pl 88 # shladd Iptr = I, KeyTable, 3 M0-M3, I0, I1 1 cyc
89 # I = (I + 1) & 0xff padd1 nextI = I, one M0-M3, I0, I1 3 cyc
94 # J = SI + J add J = J, SI M0-M3, I0, I1 1 cyc c2
98 # J = J & 0xff zxt1 J = J I0, I1, 1 cyc c3
100 # shladd Jptr = J, KeyTable, 3 M0-M3, I0, I1 1 cyc c4
105 # T = (SI + SJ) add T = SI, SJ M0-M3, I0, I1 1 cyc c6
107 # T = T & 0xff zxt1 T = T I0, I1 1 cyc
111 # shladd Tptr = T, KeyTable, 3 M0-M3, I0, I1 1 cyc c8
116 # data ^= T xor data = data, T M0-M3, I0, I1 1 cyc c10
118 # *out++ = Data ^ T dep word = word, data, 8, POS I0, I1 1 cyc c1
    [all...]
  /external/quake/quake/src/QW/qwfwd/
qwfwd.c 168 int i1; local
198 i1 = s;
201 if (p->s >= i1)
202 i1 = p->s + 1;
207 retval = select(i1, &rfds, (fd_set *)0, (fd_set *)0, &tv);
213 i1 = recvfrom(s, buffer, 4096, 0, (struct sockaddr *) &fsin, &alen);
214 if(i1 > 0) {
219 send(p->s, buffer, i1, 0);
230 send(p->s, buffer, i1, 0);
238 i1 = recv(p->s, buffer, 4096, 0);
    [all...]
  /external/openssl/crypto/aes/asm/
aes-armv4.pl 45 $i1="r7";
274 ldmia $key!,{$t1-$i1}
279 eor $s3,$s3,$i1
283 and $i1,lr,$s0
288 ldr $t1,[$tbl,$i1,lsl#2] @ Te3[s0>>0]
289 and $i1,lr,$s1,lsr#16 @ i0
297 ldr $i1,[$tbl,$i1,lsl#2] @ Te1[s1>>16]
300 eor $s0,$s0,$i1,ror#8
302 and $i1,lr,$s2,lsr#8 @ i
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c4_17pf.cpp 171 i1 : 1, 6, 11, 16, 21, 26, 31, 36.
395 Word16 i1; local
460 * i1 loop: 8 positions. *
476 for (i1 = ipos[1]; i1 < L_CODE; i1 += STEP)
479 /* ps1 = add(ps0, dn[i1], pOverflow); */
480 ps1 = ps0 + dn[i1];
482 /* alp1 = alp0 + rr[i0][i1] + 1/2*rr[i1][i1]; *
    [all...]
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 953 BigInteger i1 = element[0], i2 = element[1]; local
969 BigInteger i1 = element[0], i2 = element[1]; local
985 BigInteger i1 = element[0], i2 = element[1]; local
1001 BigInteger i1 = element[0]; local
1015 BigInteger i1 = element[0], i2 = element[1]; local
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget/d/
T_sget_5.d 19 .field public i1 I
27 iput v2, v3, dot.junit.opcodes.sget.d.T_sget_5.i1 I
34 sget v1, dot.junit.opcodes.sget.d.T_sget_5.i1 I
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_boolean/d/
T_sget_boolean_5.d 19 .field public i1 Z
27 iput-boolean v2, v3, dot.junit.opcodes.sget_boolean.d.T_sget_boolean_5.i1 Z
34 sget-boolean v1, dot.junit.opcodes.sget_boolean.d.T_sget_boolean_5.i1 Z

Completed in 846 milliseconds

1 23 4 5 6 7 8 91011>>