Lines Matching refs:temp_bytes
869 unsigned short temp_bytes; in packetizeRx() local
883 temp_bytes = in packetizeRx()
890 temp_bytes); in packetizeRx()
892 odev->rx_buf_size += temp_bytes; in packetizeRx()
893 buffer_offset += temp_bytes; in packetizeRx()
894 odev->rx_buf_missing -= temp_bytes; in packetizeRx()
895 count -= temp_bytes; in packetizeRx()
939 temp_bytes = (count < odev->rx_buf_missing) in packetizeRx()
945 tmp_rx_buf = skb_put(odev->skb_rx_buf, temp_bytes); in packetizeRx()
946 memcpy(tmp_rx_buf, ip_pkt + buffer_offset, temp_bytes); in packetizeRx()
948 odev->rx_buf_missing -= temp_bytes; in packetizeRx()
949 count -= temp_bytes; in packetizeRx()
950 buffer_offset += temp_bytes; in packetizeRx()
951 odev->rx_buf_size += temp_bytes; in packetizeRx()