Searched refs:firstByte (Results 1 - 12 of 12) sorted by relevance

/external/icu4c/i18n/
H A Dcsrmbcs.cpp246 int32_t firstByte = it->charValue = it->nextByte(det); local
248 if (firstByte < 0) {
252 if (firstByte <= 0x7F || (firstByte > 0xA0 && firstByte <= 0xDF)) {
258 it->charValue = (firstByte << 8) | secondByte;
291 int32_t firstByte = 0; local
297 firstByte = it->charValue = it->nextByte(det);
299 if (firstByte < 0) {
304 if (firstByte <
401 int32_t firstByte; local
450 int32_t firstByte = 0; local
[all...]
/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;
H A DAbstractMessageLite.java276 final int firstByte = input.read();
277 if (firstByte == -1) {
280 final int size = CodedInputStream.readRawVarint32(firstByte, input);
H A DUnknownFieldSet.java558 final int firstByte = input.read();
559 if (firstByte == -1) {
562 final int size = CodedInputStream.readRawVarint32(firstByte, input);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DRandomTest.java70 byte firstByte = randomBytes[0];
72 if (randomBytes[counter] != firstByte)
/external/clang/include/clang/Basic/
H A DConvertUTF.h163 unsigned getNumBytesForUTF8(UTF8 firstByte);
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF8.cpp65 static inline int nonASCIISequenceLength(uint8_t firstByte) argument
85 return lengths[firstByte];
/external/icu4c/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/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryInputCapsule.java1136 byte firstByte = contents[index];
1137 if (firstByte == BinaryOutputCapsule.NULL_OBJECT)
1139 else if (firstByte == BinaryOutputCapsule.DEFAULT_OBJECT)
1141 else if (firstByte == 0)
1144 byte[] rVal = new byte[firstByte];
/external/webkit/Source/WebCore/storage/
H A DIDBLevelDBBackingStore.cpp521 unsigned char firstByte = *start++; local
523 int databaseIdBytes = ((firstByte >> 5) & 0x7) + 1;
524 int objectStoreIdBytes = ((firstByte >> 2) & 0x7) + 1;
525 int indexIdBytes = (firstByte & 0x3) + 1;
555 unsigned char firstByte = (databaseIdString.size() - 1) << 5 | (objectStoreIdString.size() - 1) << 2 | (indexIdString.size() - 1); local
557 ret.append(firstByte);
/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 ...

Completed in 2515 milliseconds