Lines Matching refs:tcount
1413 size_t get, nread, count, tcount; in packetizing_buffer_input() local
1548 tcount = ((outbuf[0] & 0xff) << 8) + (outbuf[1] & 0xff); in packetizing_buffer_input()
1550 if (tcount > count) in packetizing_buffer_input()
1553 if (tcount > size) in packetizing_buffer_input()
1561 pb->holdsize = tcount - size; in packetizing_buffer_input()
1562 memcpy (pb->holdbuf, outbuf + 2 + size, tcount - size); in packetizing_buffer_input()
1572 memcpy (data, outbuf + 2, tcount); in packetizing_buffer_input()
1579 data += tcount; in packetizing_buffer_input()
1580 need -= tcount; in packetizing_buffer_input()
1581 size -= tcount; in packetizing_buffer_input()
1582 *got += tcount; in packetizing_buffer_input()