HomeSort by relevance Sort by last modified time
    Searched refs:byte2 (Results 1 - 25 of 39) 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/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/chromium/chrome/browser/autofill/crypto/
rc4_decryptor.h 55 void SwapByte(uint8* byte1, uint8* byte2) {
57 *byte1 = *byte2;
58 *byte2 = temp;
  /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/valgrind/main/VEX/priv/
guest_s390_helpers.c 561 UInt byte2 = (0x80 | klmnop); local
563 retval = (byte1 << 8) | byte2;
571 UInt byte2 = 0x80 | efghij; local
574 retval = (byte1 << 16) | (byte2 << 8) | byte3;
583 UInt byte2 = 0x80 | (xy << 4) | efgh; local
587 retval = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
640 /* The function performs a CU12 or CU14 operation. BYTE1, BYTE2, etc are the
654 s390_do_cu12_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
672 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,
  /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);
  /hardware/ti/wpan/tools/kfmapp/
kfmapp.c 1104 void fmapp_rds_decode(int blkno, int byte1, int byte2)
1114 printf("block A - id=%d\n",(byte1 << 8) | byte2);
1121 ((byte1 << 3) & 0x18) | ((byte2 >> 5) & 0x07),
1122 byte2 & 0x1f);
1124 spare = byte2 & 0x1f;
1125 rds_pty = ((byte1 << 3) & 0x18) | ((byte2 >> 5) & 0x07);
1126 ms_code = (byte2 >> 3)& 0x1;
1129 printf("block C - 0x%02x 0x%02x\n",byte1,byte2);
1131 blkc_byte2 = byte2;
1134 printf("block D - 0x%02x 0x%02x\n",byte1,byte2);
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.cc 451 uint8 byte2 = static_cast<uint8>(it_[1]);
454 | (byte2 & 0x3F);
459 | ((byte2 & 0x3F) << 6)
464 | ((byte2 & 0x3F) << 12)
  /hardware/ti/wpan/tools/FM/service/src/jni/
JFmRxNative.cpp 141 int rdsParseFunc_updateRepertoire(int byte1,int byte2)
151 repertoire3 = (FMC_U8)(byte2&RDS_BIT_0_TO_BIT_3);
152 repertoire4 = (FMC_U8)((byte2&RDS_BIT_4_TO_BIT_7)>>4);
175 void rds_decode(int blkno, int byte1, int byte2)
187 V4L2_JBTL_LOGD("block A - id=%d\n",(byte1 << 8) | byte2);
194 ((byte1 << 3) & 0x18) | ((byte2 >> 5) & 0x07),
195 byte2 & 0x1f);
197 spare = byte2 & 0x1f;
198 rds_pty = ((byte1 << 3) & 0x18) | ((byte2 >> 5) & 0x07);
199 ms_code = (byte2 >> 3)& 0x1
    [all...]
  /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 733 uint8_t byte2 = *(ptr_++); local
734 if ((byte2 & 0xc0) != 0x80) {
735 LOG(ERROR) << StringPrintf("Illegal continuation byte %x in string data", byte2);
738 uint16_t value = ((byte & 0x1f) << 6) | (byte2 & 0x3f);
747 uint8_t byte2 = *(ptr_++); local
748 if ((byte2 & 0xc0) != 0x80) {
749 LOG(ERROR) << StringPrintf("Illegal continuation byte %x in string data", byte2);
757 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f);
    [all...]
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 213 int byte2 = stream2.read(); local
214 if (byte1 != byte2) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java     [all...]
  /bionic/libc/arch-arm/bionic/
strcmp.a15.S 239 beq byte2
249 byte2: label
  /dalvik/libdex/
DexSwapVerify.cpp 1928 u1 byte2 = *(data++); local
1949 u1 byte2 = *(data++); local
    [all...]
  /dalvik/vm/analysis/
RegisterMap.cpp 1399 u1 byte2 = *bits2++; local
    [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...]

Completed in 1995 milliseconds

1 2