HomeSort by relevance Sort by last modified time
    Searched defs:byte2 (Results 1 - 25 of 32) 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/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
  /bionic/libc/arch-arm/bionic/
strcmp.a15.S 239 beq byte2
249 byte2: label
  /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);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 953 int byte0, byte1, byte2, shift, tmpvar; local
    [all...]
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 213 int byte2 = stream2.read(); local
214 if (byte1 != byte2) {
  /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_x86_toIR.c 5986 UChar byte2, subopc; local
    [all...]
guest_s390_toIR.c 9072 IRTemp byte2 = newTemp(Ity_I8); local
11655 IRExpr *cond, *addr, *byte2, *byte3, *byte4; local
    [all...]
guest_amd64_toIR.c 7283 UChar byte2, subopc; local
    [all...]
  /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...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 942 private static int byte2(int value) { method in class:InstructionCodec
    [all...]
  /dalvik/vm/analysis/
RegisterMap.cpp 1399 u1 byte2 = *bits2++; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1258 int byte2 = local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 1076 private static int byte2(int value) { method in class:InstructionCodec
    [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) {
  /dalvik/libdex/
DexSwapVerify.cpp 1928 u1 byte2 = *(data++); local
1949 u1 byte2 = *(data++); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xlib.h 1069 unsigned char byte2; member in struct:__anon38490
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xlib.h 1069 unsigned char byte2; member in struct:__anon40080
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xlib.h 1069 unsigned char byte2; member in struct:__anon41595
    [all...]

Completed in 1094 milliseconds

1 2