Searched refs:lengthByte (Results 1 – 5 of 5) sorted by relevance
519 uint8_t lengthByte; in expandGroupLengths() local523 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()
417 uint8_t lengthByte = (uint8_t)asUTF8.length;418 [expected appendBytes:&lengthByte length:1];