Lines Matching refs:byCarry
586 BYTE byCarry; // carry due to the shift in tpam_hdlc_encode() local
598 byCarry = 0; in tpam_hdlc_encode()
638 byCharIn = dwShifter | byCarry; in tpam_hdlc_encode()
639 byCarry = byNewCarry; in tpam_hdlc_encode()
663 byCarry = 1; in tpam_hdlc_encode()
676 byCarryMSB = byCarry & 0x40; in tpam_hdlc_encode()
677 byCarry <<= (woInfo & 0x0C00) >> 10; in tpam_hdlc_encode()
678 byCarry |= (woInfo & 0x0300) >> 8; in tpam_hdlc_encode()
691 byCharIn = byCarry; in tpam_hdlc_encode()
692 byCarry = 0; in tpam_hdlc_encode()
734 byCarry = 0x7E7E >> (8 - *pdwInitialShift); in tpam_hdlc_encode()
735 *pbyBuffOut++ = byCarry; in tpam_hdlc_encode()
736 *pbyBuffOut++ = byCarry; in tpam_hdlc_encode()
746 *pbyBuffOut ++ = byCarry; in tpam_hdlc_encode()
779 BYTE byCarry; // current carry in tpam_hdlc_decode() local
836 byCarry = 0; in tpam_hdlc_decode()
860 byCarry = woInfo << (8 - byLgByte); in tpam_hdlc_decode()
881 *pbyBuffOut ++ = ( (woInfo << 8) | byCarry) >> (8 - byLgCarry); in tpam_hdlc_decode()
884 byCarry = woInfo << (8-byLgByte); in tpam_hdlc_decode()
894 dwInit = (woInfo << 8) | byCarry; in tpam_hdlc_decode()
896 byCarry = dwInit >> byLgByte; in tpam_hdlc_decode()
907 byCarry = ((byCharIn << 8) | *(pbyBuffIn-2)) >> (8 - byLgCarry); in tpam_hdlc_decode()
908 if (byCarry == 0x7E) in tpam_hdlc_decode()