HomeSort by relevance Sort by last modified time
    Searched defs:firstByte (Results 1 - 25 of 43) sorted by null

1 2

  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractParser.java 224 int firstByte = input.read();
225 if (firstByte == -1) {
228 size = CodedInputStream.readRawVarint32(firstByte, input);
AbstractMessageLite.java 294 final int firstByte = input.read();
295 if (firstByte == -1) {
298 final int size = CodedInputStream.readRawVarint32(firstByte, input);
CodedInputStream.java 671 final int firstByte = input.read();
672 if (firstByte == -1) {
675 return readRawVarint32(firstByte, input);
684 final int firstByte, final InputStream input) throws IOException {
685 if ((firstByte & 0x80) == 0) {
686 return firstByte;
689 int result = firstByte & 0x7f;
    [all...]
UnknownFieldSet.java 575 final int firstByte = input.read();
576 if (firstByte == -1) {
579 final int size = CodedInputStream.readRawVarint32(firstByte, input);
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
patricia_trie_reading_utils.cpp 49 const uint8_t firstByte = ByteArrayUtils::readUint8AndAdvancePosition(buffer, pos);
50 if (firstByte < 0x80) {
51 return firstByte;
53 return ((firstByte & 0x7F) << 8) ^ ByteArrayUtils::readUint8AndAdvancePosition(
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
byte_array_utils.h 160 * codePointTable. The indices are calculated by subtracting 0x20 from the firstByte.
162 const uint8_t firstByte = readUint8(buffer, *pos);
163 if (firstByte < MINIMUM_ONE_BYTE_CHARACTER_VALUE) {
164 if (firstByte == CHARACTER_ARRAY_TERMINATOR) {
173 return codePointTable[firstByte - MINIMUM_ONE_BYTE_CHARACTER_VALUE];
175 return firstByte;
  /external/icu/icu4c/source/i18n/
csrmbcs.cpp 247 int32_t firstByte = it->charValue = it->nextByte(det);
249 if (firstByte < 0) {
253 if (firstByte <= 0x7F || (firstByte > 0xA0 && firstByte <= 0xDF)) {
259 it->charValue = (firstByte << 8) | secondByte;
293 int32_t firstByte = 0;
299 firstByte = it->charValue = it->nextByte(det);
301 if (firstByte < 0) {
306 if (firstByte <= 0x8D)
    [all...]
collationiterator.cpp 759 int32_t firstByte = 2;
763 uint32_t primary = numericPrimary | ((firstByte + value) << 16);
768 firstByte += numBytes;
773 ((firstByte + value / 254) << 16) | ((2 + value % 254) << 8);
778 firstByte += numBytes;
786 primary |= (firstByte + value % 254) << 16;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecog_mbcs.java 202 int firstByte;
203 firstByte = it.charValue = it.nextByte(det);
204 if (firstByte < 0) {
208 if (firstByte <= 0x7f || (firstByte>0xa0 && firstByte<=0xdf)) {
216 it.charValue = (firstByte << 8) | secondByte;
265 int firstByte;
266 firstByte = it.charValue = it.nextByte(det);
267 if (firstByte < 0)
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zHandler.cpp 305 Byte firstByte = *data++;
306 UInt32 numCyclesPower = firstByte & 0x3F;
309 if ((firstByte & 0xC0) != 0)
311 UInt32 saltSize = (firstByte >> 7) & 1;
312 UInt32 ivSize = (firstByte >> 6) & 1;
7zOut.cpp 206 Byte firstByte = 0;
213 firstByte |= Byte(value >> (8 * i));
216 firstByte |= mask;
219 WriteByte(firstByte);
7zIn.cpp 214 Byte firstByte = _buffer[_pos++];
219 if ((firstByte & mask) == 0)
221 UInt64 highPart = firstByte & (mask - 1);
    [all...]
  /frameworks/base/core/java/android/net/
NetworkUtils.java 356 int firstByte = address.getAddress()[0] & 0xff; // Convert to an unsigned value.
357 if (firstByte < 128) {
359 } else if (firstByte < 192) {
361 } else if (firstByte < 224) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageHeaderParser.java 87 int firstByte = streamReader.getUInt8();
90 if (firstByte == EXIF_MAGIC_NUMBER >> 8) {
94 final int firstTwoBytes = firstByte << 8 & 0xFF00 | streamReader.getUInt8() & 0xFF;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Hpack.java 321 int readInt(int firstByte, int prefixMask) throws IOException {
322 int prefix = firstByte & prefixMask;
345 int firstByte = readByte();
346 boolean huffmanDecode = (firstByte & 0x80) == 0x80; // 1NNNNNNN
347 int length = readInt(firstByte, PREFIX_7_BITS);
  /external/icu/icu4c/source/common/
ucnv_lmb.c 756 ulmbcs_byte_t firstByte;
765 firstByte = (ulmbcs_byte_t)(value >> ((bytesConverted - 1) * 8));
777 U_ASSERT((firstByte <= ULMBCS_C0END) || (firstByte >= ULMBCS_C1START) || (group == ULMBCS_GRP_EXCEPT));
790 if ( bytesConverted == 1 && firstByte < 0x20 )
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetLMBCS.java     [all...]
  /external/lzma/C/
7zIn.c 350 Byte firstByte;
353 RINOK(SzReadByte(sd, &firstByte));
358 if ((firstByte & mask) == 0)
360 UInt64 highPart = firstByte & (mask - 1);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 917 int firstByte = p.getByte();
919 mMti = firstByte & 0x3;
926 parseSmsDeliver(p, firstByte);
929 parseSmsSubmit(p, firstByte);
932 parseSmsStatusReport(p, firstByte);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCarrierPrivilegeRules.java 169 int firstByte = Integer.parseInt(data.substring(offset, offset + 2), 16);
170 if (firstByte < SINGLE_BYTE_MAX_LENGTH) {
171 length = firstByte * 2;
174 int numBytes = firstByte - SINGLE_BYTE_MAX_LENGTH;
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /external/zxing/core/
core.jar 
  /prebuilts/devtools/tools/lib/
commons-compress-1.8.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 

Completed in 732 milliseconds

1 2