Lines Matching refs:byLgByte
786 BYTE byLgByte; // count of used bits in the decoded byte in tpam_hdlc_decode() local
838 byLgByte = 0; in tpam_hdlc_decode()
845 byLgByte = ((woInfo & 0x7000) >> 12) + 1; in tpam_hdlc_decode()
853 if (byLgByte - byShift == 8) in tpam_hdlc_decode()
860 byCarry = woInfo << (8 - byLgByte); in tpam_hdlc_decode()
861 byLgCarry = byLgByte - byShift; in tpam_hdlc_decode()
872 byLgByte = ((woInfo & 0x7000) >> 12) + 1; in tpam_hdlc_decode()
879 if (byLgByte + byLgCarry >= 8) in tpam_hdlc_decode()
883 byLgCarry += byLgByte - 8; in tpam_hdlc_decode()
884 byCarry = woInfo << (8-byLgByte); in tpam_hdlc_decode()
895 byLgCarry += byLgByte; in tpam_hdlc_decode()
896 byCarry = dwInit >> byLgByte; in tpam_hdlc_decode()