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

1 2

  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Utf8.java 86 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16);
88 // Such a state is unpacked thus (note the ~ operation for byte2 to
92 // int byte2 = (byte) ~(state >> 8);
164 // byte2 trailing-byte test
171 // Get byte2 from saved state or array
172 int byte2 = (byte) ~(state >> 8); local
173 if (byte2 == 0) {
174 byte2 = bytes[index++];
176 return incompleteStateFor(byte1, byte2);
179 if (byte2 > (byte) 0xBF |
192 int byte2 = (byte) ~(state >> 8); local
263 int byte1, byte2; local
    [all...]
  /external/icu/icu4c/source/i18n/
collation.cpp 76 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step; local
78 if(byte2 < 4) {
79 byte2 += 251;
83 if(byte2 < 2) {
84 byte2 += 254;
88 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16);
103 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - 1; local
105 if(byte2 < 4) {
106 byte2 = 0xfe;
110 if(byte2 < 2)
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/util/
BookmarkUtils.java 30 public static boolean byteArrayEqual(byte[] byte1, byte[] byte2) {
31 if (byte1 == null && byte2 != null) {
32 return byte2.length == 0;
34 if (byte2 == null && byte1 != null) {
37 return Arrays.equals(byte1, byte2);
  /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...]
  /external/chromium_org/components/autofill/core/browser/crypto/
rc4_decryptor.h 60 void SwapByte(uint8* byte1, uint8* byte2) {
62 *byte1 = *byte2;
63 *byte2 = temp;
  /external/valgrind/main/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
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 141 char2b.byte2 = (c & 0xff);
167 unsigned int byte1 = 0, byte2 = 0; local
180 byte2 = which & 0xff;
182 if ((fs->min_char_or_byte2 > byte2) ||
183 (fs->max_char_or_byte2 < byte2) ||
197 (byte2 - fs->min_char_or_byte2);
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xfonts.c 148 char2b.byte2 = (c & 0xff);
174 unsigned int byte1 = 0, byte2 = 0; local
187 byte2 = which & 0xff;
189 if ((fs->min_char_or_byte2 > byte2) ||
190 (fs->max_char_or_byte2 < byte2) ||
204 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 141 char2b.byte2 = (c & 0xff);
167 unsigned int byte1 = 0, byte2 = 0; local
180 byte2 = which & 0xff;
182 if ((fs->min_char_or_byte2 > byte2) ||
183 (fs->max_char_or_byte2 < byte2) ||
197 (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 148 char2b.byte2 = (c & 0xff);
174 unsigned int byte1 = 0, byte2 = 0; local
187 byte2 = which & 0xff;
189 if ((fs->min_char_or_byte2 > byte2) ||
190 (fs->max_char_or_byte2 < byte2) ||
204 (byte2 - fs->min_char_or_byte2);
  /external/valgrind/main/VEX/priv/
guest_s390_helpers.c 604 UInt byte2 = (0x80 | klmnop); local
606 retval = (byte1 << 8) | byte2;
614 UInt byte2 = 0x80 | efghij; local
617 retval = (byte1 << 16) | (byte2 << 8) | byte3;
626 UInt byte2 = 0x80 | (xy << 4) | efgh; local
630 retval = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
683 /* The function performs a CU12 or CU14 operation. BYTE1, BYTE2, etc are the
697 s390_do_cu12_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
715 if (byte2 < 0x80 || byte2 > 0xbf)
    [all...]
guest_s390_defs.h 84 ULong s390_do_cu12_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
86 ULong s390_do_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.cc 449 uint8 byte2 = static_cast<uint8>(it_[1]);
452 | (byte2 & 0x3F);
457 | ((byte2 & 0x3F) << 6)
462 | ((byte2 & 0x3F) << 12)
  /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) {
  /art/runtime/
dex_file_verifier.cc 857 uint8_t byte2 = *(ptr_++); local
858 if (UNLIKELY((byte2 & 0xc0) != 0x80)) {
859 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
862 uint16_t value = ((byte & 0x1f) << 6) | (byte2 & 0x3f);
871 uint8_t byte2 = *(ptr_++); local
872 if (UNLIKELY((byte2 & 0xc0) != 0x80)) {
873 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
881 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f);
    [all...]
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 218 int byte2 = stream2.read(); local
219 if (byte1 != byte2) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java     [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 1928 u1 byte2 = *(data++); local
1949 u1 byte2 = *(data++); local
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_crc32.c 719 uint8_t byte0, byte1, byte2, byte3; local
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 460 uint8_t byte1, byte2; local
467 if (lookAtByte(insn, &byte2)) {
473 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) {
    [all...]
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcTag.cpp 668 nfc_get_crc_a( uint8_t* msg, size_t len, uint8_t* byte1, uint8_t* byte2)
674 *byte2 = (crc >> 8) & 0xFF;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1258 int byte2 = local
    [all...]

Completed in 833 milliseconds

1 2