Lines Matching refs:byCharIn
588 BYTE byCharIn; // byte being encoded in tpam_hdlc_encode() local
616 byCharIn = *pbyBuffIn ++; in tpam_hdlc_encode()
636 dwShifter = byCharIn << dwShiftNb; in tpam_hdlc_encode()
638 byCharIn = dwShifter | byCarry; in tpam_hdlc_encode()
648 woInfo = stuffs[dwState][byCharIn]; in tpam_hdlc_encode()
691 byCharIn = byCarry; in tpam_hdlc_encode()
708 byCharIn = 0; in tpam_hdlc_encode()
719 byCharIn = 0; in tpam_hdlc_encode()
778 BYTE byCharIn; // byte being decoded in tpam_hdlc_decode() local
843 byCharIn = (*pbyBuffIn >> byShift) << byShift; in tpam_hdlc_decode()
844 woInfo = destuffs[0][byCharIn]; in tpam_hdlc_decode()
869 byCharIn = *pbyBuffIn ++; in tpam_hdlc_decode()
871 woInfo = destuffs[woNb1][byCharIn]; in tpam_hdlc_decode()
907 byCarry = ((byCharIn << 8) | *(pbyBuffIn-2)) >> (8 - byLgCarry); in tpam_hdlc_decode()