Home
last modified time | relevance | path

Searched refs:lengthByte (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/skia/third_party/externals/icu/source/common/
Dunames.cpp519 uint8_t lengthByte; in expandGroupLengths() local
523 lengthByte=*s++; in expandGroupLengths()
528 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12); in expandGroupLengths()
529 lengthByte&=0xf; in expandGroupLengths()
530 } else if((lengthByte /* &0xf0 */)>=0xc0) { in expandGroupLengths()
532 length=(uint16_t)((lengthByte&0x3f)+12); in expandGroupLengths()
535 length=(uint16_t)(lengthByte>>4); in expandGroupLengths()
536 lengthByte&=0xf; in expandGroupLengths()
546 if((lengthByte&0xf0)==0) { in expandGroupLengths()
548 length=lengthByte; in expandGroupLengths()
/third_party/node/deps/icu-small/source/common/
Dunames.cpp519 uint8_t lengthByte; in expandGroupLengths() local
523 lengthByte=*s++; in expandGroupLengths()
528 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12); in expandGroupLengths()
529 lengthByte&=0xf; in expandGroupLengths()
530 } else if((lengthByte /* &0xf0 */)>=0xc0) { in expandGroupLengths()
532 length=(uint16_t)((lengthByte&0x3f)+12); in expandGroupLengths()
535 length=(uint16_t)(lengthByte>>4); in expandGroupLengths()
536 lengthByte&=0xf; in expandGroupLengths()
546 if((lengthByte&0xf0)==0) { in expandGroupLengths()
548 length=lengthByte; in expandGroupLengths()
/third_party/skia/third_party/externals/icu/source/common/
Dunames.cpp519 uint8_t lengthByte; in expandGroupLengths() local
523 lengthByte=*s++; in expandGroupLengths()
528 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12); in expandGroupLengths()
529 lengthByte&=0xf; in expandGroupLengths()
530 } else if((lengthByte /* &0xf0 */)>=0xc0) { in expandGroupLengths()
532 length=(uint16_t)((lengthByte&0x3f)+12); in expandGroupLengths()
535 length=(uint16_t)(lengthByte>>4); in expandGroupLengths()
536 lengthByte&=0xf; in expandGroupLengths()
546 if((lengthByte&0xf0)==0) { in expandGroupLengths()
548 length=lengthByte; in expandGroupLengths()
/third_party/icu/icu4c/source/common/
Dunames.cpp519 uint8_t lengthByte; in expandGroupLengths() local
523 lengthByte=*s++; in expandGroupLengths()
528 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12); in expandGroupLengths()
529 lengthByte&=0xf; in expandGroupLengths()
530 } else if((lengthByte /* &0xf0 */)>=0xc0) { in expandGroupLengths()
532 length=(uint16_t)((lengthByte&0x3f)+12); in expandGroupLengths()
535 length=(uint16_t)(lengthByte>>4); in expandGroupLengths()
536 lengthByte&=0xf; in expandGroupLengths()
546 if((lengthByte&0xf0)==0) { in expandGroupLengths()
548 length=lengthByte; in expandGroupLengths()
/third_party/protobuf/objectivec/Tests/
DGPBCodedOuputStreamTests.m417 uint8_t lengthByte = (uint8_t)asUTF8.length;
418 [expected appendBytes:&lengthByte length:1];