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

  /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/chromium/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/icu4c/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/chromium/third_party/icu/source/common/
ucnv_lmb.c 693 ulmbcs_byte_t firstByte;
702 firstByte = (ulmbcs_byte_t)(value >> ((bytesConverted - 1) * 8));
714 U_ASSERT((firstByte <= ULMBCS_C0END) || (firstByte >= ULMBCS_C1START) || (group == ULMBCS_GRP_EXCEPT));
727 if ( bytesConverted == 1 && firstByte < 0x20 )
    [all...]
  /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...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SmsMessage.java 926 int firstByte = p.getByte();
928 mti = firstByte & 0x3;
933 parseSmsDeliver(p, firstByte);
936 parseSmsStatusReport(p, firstByte);
948 * @param firstByte The first byte of the PDU, which contains MTI, etc.
950 private void parseSmsStatusReport(PduParser p, int firstByte) {
954 forSubmit = (firstByte & 0x20) == 0x00;
    [all...]
  /external/webkit/JavaScriptCore/pcre/
pcre_compile.cpp 600 int firstByte = REQ_UNSET;
607 value > 255. It is added into the firstByte or reqByte variables to record the
643 *firstbyteptr = firstByte;
654 if (firstByte == REQ_UNSET)
655 firstByte = REQ_NONE;
674 if (firstByte == REQ_UNSET)
675 firstByte = REQ_NONE;
676 zeroFirstByte = firstByte;
    [all...]
pcre_exec.cpp     [all...]

Completed in 930 milliseconds