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

1 2

  /external/chromium_org/third_party/icu/source/i18n/
csrmbcs.cpp 246 int32_t firstByte = it->charValue = it->nextByte(det);
248 if (firstByte < 0) {
252 if (firstByte <= 0x7F || (firstByte > 0xA0 && firstByte <= 0xDF)) {
258 it->charValue = (firstByte << 8) | secondByte;
291 int32_t firstByte = 0;
297 firstByte = it->charValue = it->nextByte(det);
299 if (firstByte < 0) {
304 if (firstByte <= 0x8D)
    [all...]
  /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...]
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...]
collationbasedatabuilder.h 69 void addReorderingGroup(uint32_t firstByte, uint32_t lastByte,
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...]
collationbasedatabuilder.cpp 305 CollationBaseDataBuilder::addReorderingGroup(uint32_t firstByte, uint32_t lastByte,
323 scripts.append((UChar)((firstByte << 8) | lastByte));
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.cpp 62 unsigned char firstByte = *p++;
65 bool final = firstByte & finalBit;
66 bool compress = firstByte & compressBit;
67 bool reserved2 = firstByte & reserved2Bit;
68 bool reserved3 = firstByte & reserved3Bit;
69 unsigned char opCode = firstByte & opCodeMask;
  /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(
  /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/third_party/protobuf/java/src/main/java/com/google/protobuf/
AbstractParser.java 232 int firstByte = input.read();
233 if (firstByte == -1) {
236 size = CodedInputStream.readRawVarint32(firstByte, input);
AbstractMessageLite.java 284 final int firstByte = input.read();
285 if (firstByte == -1) {
288 final int size = CodedInputStream.readRawVarint32(firstByte, input);
CodedInputStream.java 414 final int firstByte = input.read();
415 if (firstByte == -1) {
418 return readRawVarint32(firstByte, input);
427 final int firstByte, final InputStream input) throws IOException {
428 if ((firstByte & 0x80) == 0) {
429 return firstByte;
432 int result = firstByte & 0x7f;
  /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);
  /external/chromium_org/third_party/re2/re2/
dfa.cc 181 // Special "firstbyte" values for a state. (Values >= 0 denote actual bytes.)
261 firstbyte(kFbUnknown),
273 int firstbyte; member in struct:re2::DFA::SearchParams
285 // "firstbyte" for that state, if any.
287 StartInfo() : start(NULL), firstbyte(kFbUnknown) { }
289 volatile int firstbyte; member in struct:re2::DFA::StartInfo
292 // Fills in params->start and params->firstbyte using
1723 int firstbyte = kFbNone; local
    [all...]
  /external/regex-re2/re2/
dfa.cc 179 // Special "firstbyte" values for a state. (Values >= 0 denote actual bytes.)
259 firstbyte(kFbUnknown),
271 int firstbyte; member in struct:re2::DFA::SearchParams
283 // "firstbyte" for that state, if any.
285 StartInfo() : start(NULL), firstbyte(kFbUnknown) { }
287 volatile int firstbyte; member in struct:re2::DFA::StartInfo
290 // Fills in params->start and params->firstbyte using
1721 int firstbyte = kFbNone; local
    [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/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;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java     [all...]
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
Socks5TransferNegotiator.java 110 int firstByte = stream.read();
111 stream.unread(firstByte);
  /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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
RandomTest.java 72 byte firstByte = randomBytes[0];
74 if (randomBytes[counter] != firstByte)
  /external/fonttools/Lib/fontTools/ttLib/tables/
_c_m_a_p.py 339 for firstByte in range(256):
340 subHeadindex = subHeaderKeys[firstByte]
343 if (firstByte < subHeader.firstCode) or (firstByte >= subHeader.firstCode + subHeader.entryCount):
346 charCode = firstByte
347 offsetIndex = firstByte - subHeader.firstCode
356 charCodeOffset = firstByte * 256 + subHeader.firstCode
443 firstbyte = charCode >> 8
446 if firstbyte != lastFirstByte: # Need to update the current subhead, and start a new one.
465 subHeaderKeys[firstbyte] = len(subHeaderList) -
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUTF8.cpp 70 static inline int nonASCIISequenceLength(uint8_t firstByte)
90 return lengths[firstByte];

Completed in 522 milliseconds

1 2