HomeSort by relevance Sort by last modified time
    Searched refs:i1 (Results 301 - 325 of 384) sorted by null

<<111213141516

  /cts/tools/vm-tests/src/dot/junit/opcodes/iget_short/d/
T_iget_short_7.d 29 iget-short v1, v2, dot.junit.opcodes.iget_short.d.T_iget_short_7no_class.i1 S
  /cts/tools/vm-tests/src/dot/junit/opcodes/iget_wide/d/
T_iget_wide_7.d 29 iget-wide v0, v2, dot.junit.opcodes.iget_wide.d.T_iget_wide_7no_class.i1 J
  /cts/tools/vm-tests/src/dot/junit/opcodes/sget/d/
T_sget_7.d 29 sget v1, dot.junit.opcodes.sget.d.T_sget_7no_class.i1 I
  /cts/tools/vm-tests/src/dot/junit/opcodes/sget_boolean/d/
T_sget_boolean_7.d 29 sget-boolean v1, dot.junit.opcodes.sget_boolean.d.T_sget_boolean_7no_class.i1 Z
  /cts/tools/vm-tests/src/dot/junit/opcodes/sget_byte/d/
T_sget_byte_7.d 29 sget-byte v1, dot.junit.opcodes.sget_byte.d.T_sget_byte_7no_class.i1 B
  /cts/tools/vm-tests/src/dot/junit/opcodes/sget_char/d/
T_sget_char_7.d 29 sget-char v1, dot.junit.opcodes.sget_char.d.T_sget_char_7no_class.i1 C
  /cts/tools/vm-tests/src/dot/junit/opcodes/sget_object/d/
T_sget_object_7.d 29 sget-object v1, dot.junit.opcodes.sget_object.d.T_sget_object_7no_class.i1 Ljava/lang/Object;
  /cts/tools/vm-tests/src/dot/junit/opcodes/sget_short/d/
T_sget_short_7.d 29 sget-short v1, dot.junit.opcodes.sget_short.d.T_sget_short_7no_class.i1 S
  /cts/tools/vm-tests/src/dot/junit/opcodes/sget_wide/d/
T_sget_wide_7.d 29 sget-wide v0, dot.junit.opcodes.sget_wide.d.T_sget_wide_7no_class.i1 J
  /dalvik/libcore/luni/src/main/java/java/io/
DataInputStream.java 354 int i1 = ((buff[0] & 0xff) << 24) | ((buff[1] & 0xff) << 16) | local
359 return ((i1 & 0xffffffffL) << 32) | (i2 & 0xffffffffL);
  /frameworks/base/core/java/android/net/
SntpClient.java 170 int i1 = ((b1 & 0x80) == 0x80 ? (b1 & 0x7F) + 0x80 : b1); local
174 return ((long)i0 << 24) + ((long)i1 << 16) + ((long)i2 << 8) + (long)i3;
  /dalvik/tests/003-omnibus-opcodes/src/
IntMath.java 15 int i1, i2; local
17 i1 = mBytes[0] | mBytes[1] << 8 | mBytes[2] << 16 | mBytes[3] << 24;
19 l = i1 | ((long)i2 << 32);
21 assert(i1 == 0x44332211);
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uutility.h 141 inline ptrdiff_t distance (T1 i1, T2 i2)
143 return (i2 - i1);
172 /// Returns the absolute value of the distance i1 and i2
174 inline size_t abs_distance (T1 i1, T2 i2)
176 return (absv (distance(i1, i2)));
simd.h 52 typename Ctr::const_iterator i1 (op1.begin());
54 for (; i2 != op2.end(); ++i1, ++i2)
55 *i2 = op (*i2, *i1);
89 typename Ctr1::const_iterator i1 (op1.begin());
91 for (; i1 != op1.end(); ++i1, ++i2)
92 *i2 = f (*i1);
ustring.cpp 250 void string::replace (iterator first, iterator last, const_pointer i1, const_pointer i2, size_type n)
255 assert ((i1 < begin() || i1 >= end() || abs_distance(i1,i2) * n + size() < capacity()) && "Replacement by self can not autoresize");
256 const size_type bte = distance(first, last), bti = distance(i1, i2) * n;
261 fill (memblock::iterator(first), i1, distance(i1, i2), n); local
ustring.h 87 inline void append (const_iterator i1, const_iterator i2) { append (i1, distance (i1, i2)); }
96 inline void assign (const_iterator i1, const_iterator i2) { assign (i1, distance (i1, i2)); }
145 void replace (iterator first, iterator last, const_pointer i1, const_pointer i2, size_type n = 1);
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
JDBCDatabaseMetaData.java 1459 int i1 = typeStr.indexOf('('); local
1487 int i1 = typeStr.indexOf('('); local
    [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);
  /external/icu4c/common/
ubidi.c 344 int32_t i=0, i0, i1, length=pBiDi->originalLength; local
394 i1=i-1; /* index of last code unit, gets the directional property */
396 dirProps[i1]=dirProp|paraDir;
397 if(i1>i0) { /* set previous code units' properties to BN */
400 dirProps[--i1]=(DirProp)(BN|paraDir);
401 } while(i1>i0);
408 for(i1=paraStart; i1<i; i1++) {
409 dirProps[i1]&=~CONTEXT_RTL
    [all...]
  /external/openssl/crypto/x509v3/
v3_addr.c 912 int prefixlen, i1, i2, delim, length;
978 i1 = strspn(s, addr_chars);
979 i2 = i1 + strspn(s + i1, " \t");
981 s[i1] = '\0';
1003 i1 = i2 + strspn(s + i2, " \t");
1004 i2 = i1 + strspn(s + i1, addr_chars);
1005 if (i1 == i2 || s[i2] != '\0') {
1010 if (a2i_ipadd(max, s + i1) != length)
    [all...]
v3_asid.c 513 int i1, i2, i3, is_range, which;
542 i1 = strspn(val->value, "0123456789");
543 if (val->value[i1] == '\0') {
547 i2 = i1 + strspn(val->value + i1, " \t");
577 s[i1] = '\0';
  /dalvik/libcore/security/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/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);

Completed in 921 milliseconds

<<111213141516