Home | History | Annotate | Download | only in common

Lines Matching defs:lengthByte

517     uint8_t lengthByte;
521 lengthByte=*s++;
523 /* read even nibble - MSBs of lengthByte */
526 length=(uint16_t)(((length&0x3)<<4|lengthByte
527 lengthByte&=0xf;
528 } else if((lengthByte /* &0xf0 */)>=0xc0) {
530 length=(uint16_t)((lengthByte&0x3f)+12);
533 length=(uint16_t)(lengthByte>>4);
534 lengthByte&=0xf;
543 /* read odd nibble - LSBs of lengthByte */
544 if((lengthByte&0xf0)==0) {
546 length=lengthByte;