Lines Matching full:lengthbyte
542 uint8_t lengthByte;
546 lengthByte=*s++;
548 /* read even nibble - MSBs of lengthByte */
551 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12);
552 lengthByte&=0xf;
553 } else if((lengthByte /* &0xf0 */)>=0xc0) {
555 length=(uint16_t)((lengthByte&0x3f)+12);
558 length=(uint16_t)(lengthByte>>4);
559 lengthByte&=0xf;
568 /* read odd nibble - LSBs of lengthByte */
569 if((lengthByte&0xf0)==0) {
571 length=lengthByte;