/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...] |
/libcore/ojluni/src/main/java/java/util/prefs/ |
Base64.java | 67 int byte1 = a[inCursor++] & 0xff; local 70 result.append(intToAlpha[(byte0 << 4)&0x3f | (byte1 >> 4)]); 71 result.append(intToAlpha[(byte1 << 2)&0x3f | (byte2 >> 6)]); 84 int byte1 = a[inCursor++] & 0xff; local 85 result.append(intToAlpha[(byte0 << 4)&0x3f | (byte1 >> 4)]); 86 result.append(intToAlpha[(byte1 << 2)&0x3f]);
|
/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...] |
/toolchain/binutils/binutils-2.25/binutils/ |
unwind-ia64.c | 593 unsigned char byte1, abreg; local 596 byte1 = *dp++; 599 abreg = (byte1 & 0x7f); 600 if (byte1 & 0x80) 611 unsigned char byte1, byte2, abreg, x, ytreg; local 614 byte1 = *dp++; 617 abreg = (byte1 & 0x7f); 619 x = (byte1 >> 7) & 1; 620 if ((byte1 & 0x80) == 0 && ytreg == 0) 631 unsigned char byte1, byte2, abreg, qp local 653 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local 687 unsigned char byte1, mask, grsave; local 725 unsigned char byte1 = *dp++; local 732 unsigned char byte1 = *dp++, r, dst; local 783 unw_word grmask, frmask, byte1, byte2, byte3; local 815 unsigned char r, byte1, byte2; local [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...] |
/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) +
|
/cts/apps/CtsVerifier/jni/verifier/ |
com_android_cts_verifier_camera_StatsImage.cpp | 58 int byte1 = *pbuf++; local 59 int pixelValue = (byte1 << 8) | byte0;
|
/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/android/aadb/cts/ |
TestDeviceFuncTest.java | 217 int byte1 = stream1.read(); local 219 if (byte1 != byte2) { 222 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/dng_sdk/source/ |
dng_iptc.cpp | 277 uint32 byte1 = stream.Get_uint8 (); local 281 if (byte1 == 27 /* Escape */ &&
|
/external/libevent/ |
evutil.c | [all...] |
/external/vixl/src/vixl/a64/ |
macro-assembler-a64.cc | 853 int byte1 = (imm & 0xff); local 855 if (byte1 == byte2) { 856 movi(vd.Is64Bits() ? vd.V8B() : vd.V16B(), byte1); 857 } else if (byte1 == 0) { 860 movi(vd, byte1); 861 } else if (byte1 == 0xff) { 864 mvni(vd, ~byte1 & 0xff); [all...] |
/dalvik/libdex/ |
DexSwapVerify.cpp | 1876 u1 byte1 = *(data++); local [all...] |
/external/pdfium/core/src/fpdfapi/fpdf_font/ |
fpdf_font_cid.cpp | 888 uint8_t byte1 = ((uint8_t*)pString)[offset++]; local 889 if (!m_pLeadingBytes[byte1]) { 890 return byte1; 893 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...] |