Searched defs:firstByte (Results 1 - 22 of 22) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollationdata.cpp170 int32_t firstByte = head >> 8; local
172 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte);
191 int32_t firstByte = head >> 8; local
193 if(table[firstByte] != 0) { // Duplicate or equivalent script.
197 do { table[lastByte--] = highByte--; } while(firstByte <= lastByte);
210 int32_t firstByte = head >> 8; local
212 if(table[firstByte] != 0) { // Duplicate or equivalent script.
216 do { table[firstByte++] = lowByte++; } while(firstByte <
[all...]
H A Dcollationbasedatabuilder.cpp305 CollationBaseDataBuilder::addReorderingGroup(uint32_t firstByte, uint32_t lastByte, argument
323 scripts.append((UChar)((firstByte << 8) | lastByte));
H A Dcsrmbcs.cpp247 int32_t firstByte = it->charValue = it->nextByte(det); local
249 if (firstByte < 0) {
253 if (firstByte <= 0x7F || (firstByte > 0xA0 && firstByte <= 0xDF)) {
259 it->charValue = (firstByte << 8) | secondByte;
293 int32_t firstByte = 0; local
299 firstByte = it->charValue = it->nextByte(det);
301 if (firstByte < 0) {
306 if (firstByte <
407 int32_t firstByte; local
458 int32_t firstByte = 0; local
[all...]
H A Dcollationiterator.cpp759 int32_t firstByte = 2; local
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;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecUTF8.cpp70 static inline int nonASCIISequenceLength(uint8_t firstByte) argument
90 return lengths[firstByte];
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketFrame.cpp60 unsigned char firstByte = *p++; local
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/chromium_org/third_party/icu/source/i18n/
H A Dcsrmbcs.cpp247 int32_t firstByte = it->charValue = it->nextByte(det); local
249 if (firstByte < 0) {
253 if (firstByte <= 0x7F || (firstByte > 0xA0 && firstByte <= 0xDF)) {
259 it->charValue = (firstByte << 8) | secondByte;
293 int32_t firstByte = 0; local
299 firstByte = it->charValue = it->nextByte(det);
301 if (firstByte < 0) {
306 if (firstByte <
407 int32_t firstByte; local
458 int32_t firstByte = 0; local
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHpackDraft05.java340 int readInt(int firstByte, int prefixMask) throws IOException { argument
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/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp305 Byte firstByte = *data++; local
306 UInt32 numCyclesPower = firstByte & 0x3F;
309 if ((firstByte & 0xC0) != 0)
311 UInt32 saltSize = (firstByte >> 7) & 1;
312 UInt32 ivSize = (firstByte >> 6) & 1;
H A D7zOut.cpp206 Byte firstByte = 0; local
213 firstByte |= Byte(value >> (8 * i));
216 firstByte |= mask;
219 WriteByte(firstByte);
H A D7zIn.cpp214 Byte firstByte = _buffer[_pos++]; local
219 if ((firstByte & mask) == 0)
221 UInt64 highPart = firstByte & (mask - 1);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java359 final int firstByte = input.read();
360 if (firstByte == -1) {
363 return readRawVarint32(firstByte, input);
371 static int readRawVarint32(final int firstByte, argument
373 if ((firstByte & 0x80) == 0) {
374 return firstByte;
377 int result = firstByte & 0x7f;
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_lmb.c758 ulmbcs_byte_t firstByte; local
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 )
/external/icu/icu4c/source/common/
H A Ducnv_lmb.c758 ulmbcs_byte_t firstByte; local
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 )
/external/chromium_org/third_party/lzma_sdk/
H A D7zIn.c350 Byte firstByte; local
353 RINOK(SzReadByte(sd, &firstByte));
358 if ((firstByte & mask) == 0)
360 UInt64 highPart = firstByte & (mask - 1);
/external/lzma/C/
H A D7zIn.c350 Byte firstByte; local
353 RINOK(SzReadByte(sd, &firstByte));
358 if ((firstByte & mask) == 0)
360 UInt64 highPart = firstByte & (mask - 1);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...

Completed in 1111 milliseconds