HomeSort by relevance Sort by last modified time
    Searched refs:lengthByte (Results 1 - 2 of 2) sorted by null

  /external/chromium/third_party/icu/source/common/
unames.c 543 uint8_t lengthByte;
547 lengthByte=*s++;
549 /* read even nibble - MSBs of lengthByte */
552 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12);
553 lengthByte&=0xf;
554 } else if((lengthByte /* &0xf0 */)>=0xc0) {
556 length=(uint16_t)((lengthByte&0x3f)+12);
559 length=(uint16_t)(lengthByte>>4);
560 lengthByte&=0xf;
569 /* read odd nibble - LSBs of lengthByte */
    [all...]
  /external/icu4c/common/
unames.c 540 uint8_t lengthByte;
544 lengthByte=*s++;
546 /* read even nibble - MSBs of lengthByte */
549 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12);
550 lengthByte&=0xf;
551 } else if((lengthByte /* &0xf0 */)>=0xc0) {
553 length=(uint16_t)((lengthByte&0x3f)+12);
556 length=(uint16_t)(lengthByte>>4);
557 lengthByte&=0xf;
566 /* read odd nibble - LSBs of lengthByte */
    [all...]

Completed in 93 milliseconds