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

1 2

  /external/icu/icu4c/source/i18n/
collationdata.cpp 170 int32_t firstByte = head >> 8;
172 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte);
191 int32_t firstByte = head >> 8;
193 if(table[firstByte] != 0) { // Duplicate or equivalent script.
197 do { table[lastByte--] = highByte--; } while(firstByte <= lastByte);
210 int32_t firstByte = head >> 8;
212 if(table[firstByte] != 0) { // Duplicate or equivalent script.
216 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte)
    [all...]
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/smack/src/org/jivesoftware/smackx/filetransfer/
Socks5TransferNegotiator.java 110 int firstByte = stream.read();
111 stream.unread(firstByte);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/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(
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.cpp 60 unsigned char firstByte = *p++;
63 bool final = firstByte & finalBit;
64 bool compress = firstByte & compressBit;
65 bool reserved2 = firstByte & reserved2Bit;
66 bool reserved3 = firstByte & reserved3Bit;
67 unsigned char opCode = firstByte & opCodeMask;
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 276 final int firstByte = input.read();
277 if (firstByte == -1) {
280 final int size = CodedInputStream.readRawVarint32(firstByte, input);
CodedInputStream.java 359 final int firstByte = input.read();
360 if (firstByte == -1) {
363 return readRawVarint32(firstByte, input);
371 static int readRawVarint32(final int firstByte,
373 if ((firstByte & 0x80) == 0) {
374 return firstByte;
377 int result = firstByte & 0x7f;
UnknownFieldSet.java 558 final int firstByte = input.read();
559 if (firstByte == -1) {
562 final int size = CodedInputStream.readRawVarint32(firstByte, input);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
byte_array_utils.h 155 const uint8_t firstByte = readUint8(buffer, *pos);
156 if (firstByte < MINIMUM_ONE_BYTE_CHARACTER_VALUE) {
157 if (firstByte == CHARACTER_ARRAY_TERMINATOR) {
165 return firstByte;
  /external/chromium_org/components/devtools_bridge/android/javatests/src/org/chromium/components/devtools_bridge/
LocalTunnelBridgeTest.java 88 int firstByte = socket.getInputStream().read();
90 Assert.assertEquals((int) REQUEST.charAt(0), firstByte);
  /external/chromium_org/third_party/icu/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...]
  /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...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageHeaderParser.java 74 int firstByte = streamReader.getUInt8();
76 if (firstByte == EXIF_MAGIC_NUMBER >> 8) { //JPEG
80 final int firstTwoBytes = firstByte << 8 & 0xFF00 | streamReader.getUInt8() & 0xFF;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
HpackDraft05.java 340 int readInt(int firstByte, int prefixMask) throws IOException {
341 int prefix = firstByte & prefixMask;
367 int firstByte = readByte();
368 boolean huffmanDecode = (firstByte & 0x80) == 0x80; // 1NNNNNNN
369 int length = readInt(firstByte, PREFIX_7_BITS);
  /external/chromium_org/third_party/icu/source/common/
ucnv_lmb.c 758 ulmbcs_byte_t firstByte;
767 firstByte = (ulmbcs_byte_t)(value >> ((bytesConverted - 1) * 8));
779 U_ASSERT((firstByte <= ULMBCS_C0END) || (firstByte >= ULMBCS_C1START) || (group == ULMBCS_GRP_EXCEPT));
792 if ( bytesConverted == 1 && firstByte < 0x20 )
    [all...]
  /external/icu/icu4c/source/common/
ucnv_lmb.c 758 ulmbcs_byte_t firstByte;
767 firstByte = (ulmbcs_byte_t)(value >> ((bytesConverted - 1) * 8));
779 U_ASSERT((firstByte <= ULMBCS_C0END) || (firstByte >= ULMBCS_C1START) || (group == ULMBCS_GRP_EXCEPT));
792 if ( bytesConverted == 1 && firstByte < 0x20 )
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
7zIn.c 350 Byte firstByte;
353 RINOK(SzReadByte(sd, &firstByte));
358 if ((firstByte & mask) == 0)
360 UInt64 highPart = firstByte & (mask - 1);
    [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     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCarrierPrivilegeRules.java 163 int firstByte = Integer.parseInt(data.substring(offset, offset + 2), 16);
164 if (firstByte < SINGLE_BYTE_MAX_LENGTH) {
165 length = firstByte * 2;
168 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 

Completed in 1101 milliseconds

1 2