Searched refs:i1 (Results 26 - 50 of 217) sorted by relevance

123456789

/external/clang/test/SemaCXX/
H A Doverload-call-copycon.cpp9 int& i1 = copycon(x); local
29 int& i1 = copycon2(b); local
40 int& i1 = copycon3(b); local
H A Dconvert-to-bool.cpp52 int& i1 = ecr; // expected-error{{non-const lvalue reference to type 'int' cannot bind to a value of unrelated type 'ExplicitConvToRef'}} local
H A Dlinkage-spec.cpp15 int& i1 = g(x); local
/external/quake/quake/src/QW/qwfwd/
H A Dqwfwd.c168 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
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer.h148 Iterator1 i1 = begin1; local
150 while (i1 != end1 && i2 != end2) {
151 if (*i1 == *i2)
153 if (*i1 > *i2)
156 ++i1;
/external/openssl/crypto/aes/asm/
H A Daes-s390x.pl60 $i1="%r5";
256 srlg $i1,$s1,`16-3` # i0
260 nr $i1,$mask
270 x $s0,3($i1,$tbl) # Te1[s1>>16]
275 srlg $i1,$s2,`8-3` # i0
276 srlg $i2,$s2,`16-3` # i1
277 nr $i1,$mask
285 srlg $ra,$s3,`8-3` # i1
291 x $s0,2($i1,$tbl) # Te2[s2>>8]
325 srlg $i1,
[all...]
H A Daes-armv4.pl40 $i1="r7";
241 ldmia $key!,{$t1-$i1}
246 eor $s3,$s3,$i1
250 and $i1,lr,$s0
255 ldr $t1,[$tbl,$i1,lsl#2] @ Te3[s0>>0]
256 and $i1,lr,$s1,lsr#16 @ i0
264 ldr $i1,[$tbl,$i1,lsl#2] @ Te1[s1>>16]
267 eor $s0,$s0,$i1,ror#8
269 and $i1,l
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DRC4Engine.java130 int i1 = 0;
135 i2 = ((keyBytes[i1] & 0xff) + engineState[i] + i2) & 0xff;
140 i1 = (i1+1) % keyBytes.length;
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
H A Dp2.cpp17 namespace i1 { namespace in namespace:test0
/external/clang/test/Sema/
H A Dattr-unused.c23 Int_unused i1; // expected-warning {{'Int_unused' was marked unused but was used}} local
/external/apache-harmony/security/src/test/api/java.injected/java/security/
H A DIdentityTest.java52 Identity i1 = new IdentityStub("testEquals");
56 i1, Boolean.TRUE,
57 new IdentityStub(i1.getName()), Boolean.TRUE
61 assertEquals(value[k+1], new Boolean(i1.equals(value[k])));
62 if (Boolean.TRUE.equals(value[k+1])) assertEquals(i1.hashCode(), value[k].hashCode());
66 assertEquals(i1.identityEquals(i2), i1.equals(i2));
68 assertEquals(i1.identityEquals(i3), i1.equals(i3));
277 // Identity i1
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderValueParser.java361 int i1 = pos;
384 while (i1 < i2 && (HTTP.isWhitespace(buffer.charAt(i1)))) {
385 i1++;
388 while ((i2 > i1) && (HTTP.isWhitespace(buffer.charAt(i2 - 1)))) {
392 if (((i2 - i1) >= 2)
393 && (buffer.charAt(i1) == '"')
395 i1++;
398 value = buffer.substring(i1, i2);
/external/valgrind/main/perf/
H A Dffbench.c172 register int i1, i2, i3; local
191 for (i1 = i2; i1 <= i2 + ip1 - 2; i1 += 2) {
192 for (i3 = i1; i3 <= ip3; i3 += ip2) {
216 for (i1 = i3; i1 <= i3 + ip1 - 2; i1 += 2) {
217 for (i2 = i1; i2 <= ip3; i2 += ifp2) {
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp289 uint32_t &i1,
311 o1.indent(i1) << "static const InstrUID modRMTable" << thisTableNumber;
328 i1++;
334 emitOneID(o1, i1, decision.instructionIDs[0], false);
337 emitOneID(o1, i1, decision.instructionIDs[0x00], true); // mod = 0b00
338 emitOneID(o1, i1, decision.instructionIDs[0xc0], false); // mod = 0b11
342 emitOneID(o1, i1, decision.instructionIDs[index], index < 255);
346 i1--;
347 o1.indent(i1) << "};" << "\n";
365 uint32_t &i1,
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBrowserCompatSpec.java113 int i1 = headervalue.toLowerCase(Locale.ENGLISH).indexOf("expires=");
114 if (i1 != -1) {
115 i1 += "expires=".length();
116 int i2 = headervalue.indexOf(';', i1);
121 DateUtils.parseDate(headervalue.substring(i1, i2), this.datepatterns);
/external/apache-http/src/org/apache/http/util/
H A DByteArrayBuffer.java106 for (int i1 = off, i2 = oldlen; i2 < newlen; i1++, i2++) {
107 this.buffer[i2] = (byte) b[i1];
/external/clang/test/CodeGenCXX/
H A Dconstructor-init.cpp30 d1(3.4567), i1(1234), m1(100) { printf("N()\n"); }
34 int i1; member in struct:N
37 printf("f1 = %f d1 = %f i1 = %d ld = %f \n", f1,d1,i1, ld);
170 // CHECK-PR10720-NEXT: br i1
178 // CHECK-PR10720-NEXT: br i1
187 // CHECK-PR10720-NEXT: br i1
197 // CHECK-PR10720-NEXT: br i1
H A Dcopy-constructor-synthesis.cpp26 X() : f1(1.0), d1(2.0), i1(3), name("HELLO"), bf1(0xff), bf2(0xabcd),
32 printf("f1 = %f d1 = %f i1 = %d name(%s) \n", f1, d1, i1, name);
41 int i1; member in struct:X
/external/dropbear/libtomcrypt/testprof/
H A Dpkcs_1_test.c9 unsigned long x, y, l1, l2, l3, i1, i2, lparamlen, saltlen, modlen; local
66 buf[0][i1 = abs(rand()) % l3] ^= 1;
69 buf[0][i1] ^= 1;
/external/stlport/test/unit/
H A Dlist_test.cpp62 list<int>::iterator i1 = l1.begin(); local
64 list<int>::const_iterator ci(i1);
66 l1.splice(i1, l2);
67 i1 = l1.begin();
68 CPPUNIT_ASSERT( *i1++ == 1 );
69 CPPUNIT_ASSERT( *i1++ == 4 );
70 CPPUNIT_ASSERT( *i1++ == 9 );
71 CPPUNIT_ASSERT( *i1++ == 16 );
72 CPPUNIT_ASSERT( *i1++ == 36 );
81 i1
[all...]
/external/opencv/cv/src/
H A Dcvapprox.cpp73 int i, j, i1, i2, s, len; local
178 i1 = i - k;
179 i1 += i1 < 0 ? len : 0;
183 dx = array[i2].pt.x - array[i1].pt.x;
184 dy = array[i2].pt.y - array[i1].pt.y;
190 dk_num = (pt0.x - array[i1].pt.x) * dy - (pt0.y - array[i1].pt.y) * dx;
212 i1 = i - j;
213 i1
[all...]
/external/jdiff/src/jdiff/
H A DDiffMyers.java368 int i0 = 0, i1 = 0;
370 while (i0 < len0 || i1 < len1)
372 if (changed0[1+i0] || changed1[1+i1])
374 int line0 = i0, line1 = i1;
378 while (changed1[1+i1]) ++i1;
381 script = new change(line0, line1, i0 - line0, i1 - line1, script);
385 i0++; i1++;
400 int i0 = len0, i1 = len1;
404 while (i0 >= 0 || i1 >
[all...]
/external/clang/test/CodeGen/
H A Dms_struct-bitfield.c96 int i1; member in struct:__anon3368
/external/icu4c/test/intltest/
H A Ditercoll.h109 void assertEqual(CollationElementIterator &i1, CollationElementIterator &i2);
H A Dregcoll.h240 void assertEqual(CollationElementIterator &i1, CollationElementIterator &i2);

Completed in 592 milliseconds

123456789