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

1 2

  /external/protobuf/java/src/main/java/com/google/protobuf/
Utf8.java 86 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16);
89 // undo byte1's sign-extension bits):
91 // int byte1 = (byte) state;
98 // a state, we ensure that byte1 is negative and subsequent bytes
156 int byte1 = (byte) state; local
157 // byte1 is never ASCII.
158 if (byte1 < (byte) 0xE0) {
163 if (byte1 < (byte) 0xC2 ||
168 } else if (byte1 < (byte) 0xF0) {
176 return incompleteStateFor(byte1, byte2)
263 int byte1, byte2; local
341 int byte1 = bytes[index - 1]; local
    [all...]
  /external/libunwind/src/ia64/
unwind_decoder.h 109 unsigned char byte1, abreg; local
112 byte1 = *dp++;
115 abreg = (byte1 & 0x7f);
116 if (byte1 & 0x80)
126 unsigned char byte1, byte2, abreg, x, ytreg; local
129 byte1 = *dp++; byte2 = *dp++;
131 abreg = (byte1 & 0x7f);
133 x = (byte1 >> 7) & 1;
134 if ((byte1 & 0x80) == 0 && ytreg == 0)
144 unsigned char byte1, byte2, abreg, qp local
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
196 unsigned char byte1, mask, grsave; local
232 unsigned char byte1 = *dp++; local
239 unsigned char byte1 = *dp++, r, dst; local
264 unw_word grmask, frmask, byte1, byte2, byte3; local
292 unsigned char r, byte1, byte2; local
    [all...]
  /external/guava/guava/src/com/google/common/base/
Utf8.java 139 int byte1; local
146 } while ((byte1 = bytes[index++]) >= 0);
148 if (byte1 < (byte) 0xE0) {
155 if (byte1 < (byte) 0xC2 || bytes[index++] > (byte) 0xBF) {
158 } else if (byte1 < (byte) 0xF0) {
166 || (byte1 == (byte) 0xE0 && byte2 < (byte) 0xA0)
168 || (byte1 == (byte) 0xED && (byte) 0xA0 <= byte2)
181 // if (byte1 > (byte) 0xF4
182 // || byte1 == (byte) 0xF0 && byte2 < (byte) 0x90
183 // || byte1 == (byte) 0xF4 && byte2 > (byte) 0x8F
    [all...]
  /external/valgrind/none/tests/s390x/
clcl.c 155 uint8_t byte, byte1, byte2; local
164 byte1 = 10;
166 run_test(&byte1, 1, &byte2, 1, 0x00); // first operand low
167 run_test(&byte1, 1, &byte1, 1, 0x00); // equal
168 run_test(&byte2, 1, &byte1, 1, 0x00); // first operand high
169 run_test(&byte1, 1, &byte2, 1, 0xFF); // first operand low
170 run_test(&byte1, 1, &byte1, 1, 0xFF); // equal
171 run_test(&byte2, 1, &byte1, 1, 0xFF); // first operand hig
    [all...]
  /art/tools/
stream-trace-converter.py 30 byte1 = f.read(1)
31 if not byte1:
36 return ord(byte1) + (ord(byte2) << 8);
44 byte1 = f.read(1)
45 if not byte1:
56 return ord(byte1) + (ord(byte2) << 8) + (ord(byte3) << 16) + (ord(byte4) << 24);
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 49 int literal = byte1(opcodeUnit); // should be zero
102 int a = byte1(opcodeUnit);
119 int target = (byte) byte1(opcodeUnit); // sign-extend
136 int literal = byte1(opcodeUnit); // should be zero
154 int literal = byte1(opcodeUnit);
172 int a = byte1(opcodeUnit);
192 int a = byte1(opcodeUnit);
210 int a = byte1(opcodeUnit);
229 int a = byte1(opcodeUnit);
259 int a = byte1(opcodeUnit)
1072 private static int byte1(int value) { method in class:InstructionCodec
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 48 int literal = byte1(opcodeUnit); // should be zero
101 int a = byte1(opcodeUnit);
118 int target = (byte) byte1(opcodeUnit); // sign-extend
135 int literal = byte1(opcodeUnit); // should be zero
153 int literal = byte1(opcodeUnit);
171 int a = byte1(opcodeUnit);
191 int a = byte1(opcodeUnit);
209 int a = byte1(opcodeUnit);
228 int a = byte1(opcodeUnit);
258 int a = byte1(opcodeUnit)
938 private static int byte1(int value) { method in class:InstructionCodec
    [all...]
  /external/valgrind/VEX/priv/
guest_s390_defs.h 84 ULong s390_do_cu12_cu14_helper1(UInt byte1, UInt etf3_and_m3_is_1);
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,
guest_s390_helpers.c 605 UInt byte1 = (0xc0 | fghij); local
608 retval = (byte1 << 8) | byte2;
615 UInt byte1 = 0xe0 | abcd; local
619 retval = (byte1 << 16) | (byte2 << 8) | byte3;
627 UInt byte1 = 0xf0 | uvw; local
632 retval = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
685 /* The function performs a CU12 or CU14 operation. BYTE1, BYTE2, etc are the
686 bytes as read from the input stream, left to right. BYTE1 is a valid
699 s390_do_cu12_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
711 retval = byte1;
    [all...]
guest_s390_toIR.c 11148 IRTemp byte1 = newTemp(Ity_I8); local
13785 IRTemp byte1 = newTemp(Ity_I64); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 59 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
140 char2b.byte1 = (c >> 8) & 0xff;
167 unsigned int byte1 = 0, byte2 = 0; local
181 byte1 = which >> 8;
184 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
196 i = ((byte1 - fs->min_byte1) * pages) +
  /external/mesa3d/src/glx/
xfont.c 65 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
146 char2b.byte1 = (c >> 8) & 0xff;
173 int byte1 = 0, byte2 = 0; local
187 byte1 = which >> 8;
190 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
202 i = ((byte1 - fs->min_byte1) * pages) +
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 66 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
147 char2b.byte1 = (c >> 8) & 0xff;
174 unsigned int byte1 = 0, byte2 = 0; local
188 byte1 = which >> 8;
191 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
203 i = ((byte1 - fs->min_byte1) * pages) +
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 457 uint8_t byte1, byte2; local
459 if (consumeByte(insn, &byte1)) {
469 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) &&
470 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) {
473 unconsumeByte(insn); /* unconsume byte1 */
480 insn->vectorExtensionPrefix[1] = byte1;
504 uint8_t byte1; local
506 if (lookAtByte(insn, &byte1)) {
511 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
539 uint8_t byte1; local
574 uint8_t byte1; local
    [all...]
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 218 int byte1 = stream1.read(); local
220 if (byte1 != byte2) {
223 eof = byte1 == -1;
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 587 int byte1 = in.read(); local
589 if (byte1 == 0xFF && byte2 == 0xFE) {
591 } else if (byte1 == 0xFF && byte2 == 0xFF) {
595 if (byte1 == 0xEF && byte2 == 0xBB && byte3 == 0xBF) {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 953 int byte0, byte1, byte2, shift, tmpvar; local
    [all...]
  /external/vixl/src/vixl/a64/
macro-assembler-a64.cc 836 int byte1 = (imm & 0xff); local
838 if (byte1 == byte2) {
839 movi(vd.Is64Bits() ? vd.V8B() : vd.V16B(), byte1);
840 } else if (byte1 == 0) {
843 movi(vd, byte1);
844 } else if (byte1 == 0xff) {
847 mvni(vd, ~byte1 & 0xff);
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 1864 u1 byte1 = *(data++); local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font_cid.cpp 503 FX_BYTE byte1 = ((FX_LPBYTE)pString)[offset++]; local
504 if (!m_pLeadingBytes[byte1]) {
505 return byte1;
508 return byte1 * 256 + byte2;
    [all...]
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcTag.cpp 669 nfc_get_crc_a( uint8_t* msg, size_t len, uint8_t* byte1, uint8_t* byte2)
674 *byte1 = crc & 0xFF;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1257 int byte1 = 0xF0 | (uuuuu >> 2); \/\/ top 3 bits of uuuuu local
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_parser.cpp 2459 FX_BYTE byte1, byte2; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xlib.h 1076 unsigned char byte1; member in struct:__anon29799
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xlib.h 1073 unsigned char byte1; member in struct:__anon31662
    [all...]

Completed in 880 milliseconds

1 2