HomeSort by relevance Sort by last modified time
    Searched refs:byte2 (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /external/icu/icu4c/source/i18n/
collation.cpp 80 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step; local
82 if(byte2 < 4) {
83 byte2 += 251;
87 if(byte2 < 2) {
88 byte2 += 254;
92 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16);
107 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - 1; local
109 if(byte2 < 4) {
110 byte2 = 0xfe;
114 if(byte2 < 2)
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Utf8.java 132 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16);
134 // Such a state is unpacked thus (note the ~ operation for byte2 to
138 // int byte2 = (byte) ~(state >> 8);
198 private static int incompleteStateFor(int byte1, int byte2) {
200 byte2 > (byte) 0xBF) ?
201 MALFORMED : byte1 ^ (byte2 << 8);
204 private static int incompleteStateFor(int byte1, int byte2, int byte3) {
206 byte2 > (byte) 0xBF ||
208 MALFORMED : byte1 ^ (byte2 << 8) ^ (byte3 << 16);
473 // byte2 trailing-byte tes
599 final int byte2 = buffer.get(index++); local
792 int byte2 = (byte) ~(state >> 8); local
812 int byte2 = (byte) ~(state >> 8); local
929 int byte1, byte2; local
1048 int byte2 = (byte) ~(state >> 8); local
1068 int byte2 = (byte) ~(state >> 8); local
1144 int byte2 = (byte) ~(state >> 8); local
1164 int byte2 = (byte) ~(state >> 8); local
1437 final int byte2; local
1455 final int byte2; local
    [all...]
  /external/guava/guava/src/com/google/common/base/
Utf8.java 163 int byte2 = bytes[index++]; local
164 if (byte2 > (byte) 0xBF
166 || (byte1 == (byte) 0xE0 && byte2 < (byte) 0xA0)
168 || (byte1 == (byte) 0xED && (byte) 0xA0 <= byte2)
178 int byte2 = bytes[index++]; local
179 if (byte2 > (byte) 0xBF
182 // || byte1 == (byte) 0xF0 && byte2 < (byte) 0x90
183 // || byte1 == (byte) 0xF4 && byte2 > (byte) 0x8F)
184 || (((byte1 << 28) + (byte2 - (byte) 0x90)) >> 30) != 0
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
Collation.java 516 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
518 if(byte2 < 4) {
519 byte2 += 251;
523 if(byte2 < 2) {
524 byte2 += 254;
528 return (basePrimary & 0xff000000L) | (byte2 << 16);
545 int byte2 = ((int)(basePrimary >> 16) & 0xff) - 1;
547 if(byte2 < 4) {
548 byte2 = 0xfe;
552 if(byte2 < 2)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
Collation.java 514 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
516 if(byte2 < 4) {
517 byte2 += 251;
521 if(byte2 < 2) {
522 byte2 += 254;
526 return (basePrimary & 0xff000000L) | (byte2 << 16);
543 int byte2 = ((int)(basePrimary >> 16) & 0xff) - 1;
545 if(byte2 < 4) {
546 byte2 = 0xfe;
550 if(byte2 < 2)
    [all...]
  /external/libunwind/src/ia64/
unwind_decoder.h 126 unsigned char byte1, byte2, abreg, x, ytreg; local
129 byte1 = *dp++; byte2 = *dp++;
132 ytreg = byte2;
144 unsigned char byte1, byte2, abreg, qp; local
147 byte1 = *dp++; byte2 = *dp++;
152 abreg = (byte2 & 0x7f);
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
167 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++;
171 abreg = (byte2 & 0x7f);
172 x = (byte2 >> 7) & 1
264 unw_word grmask, frmask, byte1, byte2, byte3; local
292 unsigned char r, byte1, byte2; local
    [all...]
  /libcore/ojluni/src/main/java/java/util/prefs/
Base64.java 68 int byte2 = a[inCursor++] & 0xff; local
71 result.append(intToAlpha[(byte1 << 2)&0x3f | (byte2 >> 6)]);
72 result.append(intToAlpha[byte2 & 0x3f]);
  /external/libtextclassifier/util/utf8/
unicodetext.cc 155 unsigned char byte2 = static_cast<unsigned char>(it_[1]); local
156 if (byte1 < 0xE0) return ((byte1 & 0x1F) << 6) | (byte2 & 0x3F);
160 return ((byte1 & 0x0F) << 12) | ((byte2 & 0x3F) << 6) | (byte3 & 0x3F);
164 return ((byte1 & 0x07) << 18) | ((byte2 & 0x3F) << 12) |
  /art/tools/
stream-trace-converter.py 33 byte2 = f.read(1)
34 if not byte2:
36 return ord(byte1) + (ord(byte2) << 8);
47 byte2 = f.read(1)
48 if not byte2:
56 return ord(byte1) + (ord(byte2) << 8) + (ord(byte3) << 16) + (ord(byte4) << 24);
  /external/valgrind/none/tests/s390x/
clcl.c 155 uint8_t byte, byte1, byte2; local
165 byte2 = 20;
166 run_test(&byte1, 1, &byte2, 1, 0x00); // first operand low
168 run_test(&byte2, 1, &byte1, 1, 0x00); // first operand high
169 run_test(&byte1, 1, &byte2, 1, 0xFF); // first operand low
171 run_test(&byte2, 1, &byte1, 1, 0xFF); // first operand high
  /toolchain/binutils/binutils-2.25/binutils/
unwind-ia64.c 611 unsigned char byte1, byte2, abreg, x, ytreg; local
615 byte2 = *dp++;
618 ytreg = byte2;
631 unsigned char byte1, byte2, abreg, qp; local
635 byte2 = *dp++;
640 abreg = (byte2 & 0x7f);
653 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
657 byte2 = *dp++;
662 abreg = (byte2 & 0x7f);
663 x = (byte2 >> 7) & 1
783 unw_word grmask, frmask, byte1, byte2, byte3; local
815 unsigned char r, byte1, byte2; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 142 char2b.byte2 = (c & 0xff);
168 unsigned int byte1 = 0, byte2 = 0; local
181 byte2 = which & 0xff;
183 if ((fs->min_char_or_byte2 > byte2) ||
184 (fs->max_char_or_byte2 < byte2) ||
198 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/glx/
xfont.c 147 char2b.byte2 = (c & 0xff);
173 int byte1 = 0, byte2 = 0; local
186 byte2 = which & 0xff;
188 if ((fs->min_char_or_byte2 > byte2) ||
189 (fs->max_char_or_byte2 < byte2) ||
203 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 142 char2b.byte2 = (c & 0xff);
168 unsigned int byte1 = 0, byte2 = 0; local
181 byte2 = which & 0xff;
183 if ((fs->min_char_or_byte2 > byte2) ||
184 (fs->max_char_or_byte2 < byte2) ||
198 (byte2 - fs->min_char_or_byte2);
  /external/valgrind/VEX/priv/
guest_s390_helpers.c 606 UInt byte2 = (0x80 | klmnop); local
608 retval = (byte1 << 8) | byte2;
616 UInt byte2 = 0x80 | efghij; local
619 retval = (byte1 << 16) | (byte2 << 8) | byte3;
628 UInt byte2 = 0x80 | (xy << 4) | efgh; local
632 retval = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
685 /* The function performs a CU12 or CU14 operation. BYTE1, BYTE2, etc are the
699 s390_do_cu12_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
717 if (byte2 < 0x80 || byte2 > 0xbf)
    [all...]
guest_s390_defs.h 85 ULong s390_do_cu12_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
87 ULong s390_do_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2Connection.java 270 byte byte2 = (byte) (responseData[4] & 0xFF);
274 basePid, byte0, byte1, byte2, byte3));
276 FourByteBitSet fourByteBitSet = new FourByteBitSet(byte0, byte1, byte2, byte3);
  /frameworks/native/libs/math/include/math/
vec2.h 118 typedef details::TVec2<int8_t> byte2;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 953 int byte0, byte1, byte2, shift, tmpvar; local
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 588 int byte2 = in.read(); local
589 if (byte1 == 0xFF && byte2 == 0xFE) {
591 } else if (byte1 == 0xFF && byte2 == 0xFF) {
595 if (byte1 == 0xEF && byte2 == 0xBB && byte3 == 0xBF) {
  /cts/hostsidetests/aadb/src/android/aadb/cts/
TestDeviceFuncTest.java 214 int byte2 = stream2.read(); local
215 if (byte1 != byte2) {
  /external/dng_sdk/source/
dng_iptc.cpp 278 uint32 byte2 = stream.Get_uint8 (); local
282 byte2 == 0x25 &&
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 
  /art/runtime/
dex_file_verifier.cc 1356 uint8_t byte2 = *(ptr_++); local
1370 uint8_t byte2 = *(ptr_++); local
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 1994 u1 byte2 = *(data++); local
2015 u1 byte2 = *(data++); local
    [all...]

Completed in 1803 milliseconds

1 2 3 4 5 6 7 8 9