/external/icu4c/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...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
SmsMessage.java | 894 int firstByte = p.getByte(); 896 mMti = firstByte & 0x3; 903 parseSmsDeliver(p, firstByte); 906 parseSmsSubmit(p, firstByte); 909 parseSmsStatusReport(p, firstByte); 921 * @param firstByte The first byte of the PDU, which contains MTI, etc. 923 private void parseSmsStatusReport(PduParser p, int firstByte) { [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/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);
|
/external/smack/src/org/jivesoftware/smackx/filetransfer/ |
Socks5TransferNegotiator.java | 110 int firstByte = stream.read();
111 stream.unread(firstByte);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
RandomTest.java | 70 byte firstByte = randomBytes[0]; 72 if (randomBytes[counter] != firstByte)
|
/libcore/luni/src/test/java/tests/api/java/util/ |
RandomTest.java | 70 byte firstByte = randomBytes[0]; 72 if (randomBytes[counter] != firstByte)
|
/external/webkit/Source/WebCore/platform/text/ |
TextCodecUTF8.cpp | 65 static inline int nonASCIISequenceLength(uint8_t firstByte) 85 return lengths[firstByte];
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
BerInputStream.java | 440 byte firstByte = buffer[offset - length]; 443 if (firstByte == 0 && secondByte == 0 || firstByte == (byte) 0xFF
|
/external/icu4c/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/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
BinaryInputCapsule.java | [all...] |
/external/llvm/lib/Support/ |
YAMLParser.cpp | 516 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); 518 Result.push_back(FirstByte); 521 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); 524 Result.push_back(FirstByte); 528 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); 532 Result.push_back(FirstByte); [all...] |
/external/bison/lib/glthread/ |
lock.c | 461 char *firstbyte = (char *)once_control; local 462 if (*firstbyte == *(const char *)&fresh_once) 465 *firstbyte = ~ *(const char *)&fresh_once;
|
/external/llvm/include/llvm/Support/ |
ConvertUTF.h | 160 unsigned getNumBytesForUTF8(UTF8 firstByte);
|
/external/webkit/Source/WebCore/storage/ |
IDBLevelDBBackingStore.cpp | 521 unsigned char firstByte = *start++; 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); 557 ret.append(firstByte); [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64ISelLowering.cpp | [all...] |
/external/zxing/core/ |
core.jar | |