Lines Matching refs:wTmp
438 __u16 wTmp = 0, wTmp1 = 0, wTmp_new = 0; in CkRxRecv() local
443 wTmp = (wTmp1 << 8) | low; in CkRxRecv()
449 if (wTmp_new != wTmp) in CkRxRecv()
459 __u16 wTmp = 0, wTmp1 = 0; in RxCurCount() local
464 wTmp = (wTmp1 << 8) | low; in RxCurCount()
465 return wTmp; in RxCurCount()
475 __u16 wTmp, wTmp1, ret; in GetRecvByte() local
480 wTmp = (wTmp1 << 8) | low; in GetRecvByte()
483 if (wTmp >= self->RxLastCount) in GetRecvByte()
484 ret = wTmp - self->RxLastCount; in GetRecvByte()
486 ret = (0x8000 - self->RxLastCount) + wTmp; in GetRecvByte()
487 self->RxLastCount = wTmp; in GetRecvByte()