Home
last modified time | relevance | path

Searched refs:PACKET_SLOP (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/gpl2/xcvs/dist/src/
Dbuffer.c1282 # define PACKET_SLOP (100) macro
1360 pb->holdbufsize = BUFFER_DATA_SIZE + PACKET_SLOP + 2; in packetizing_buffer_initialize()
1419 stackoutbuf = xmalloc (BUFFER_DATA_SIZE + PACKET_SLOP); in packetizing_buffer_input()
1530 if (count <= BUFFER_DATA_SIZE + PACKET_SLOP) in packetizing_buffer_input()
1614 stack_outbuf = xmalloc (BUFFER_DATA_SIZE + PACKET_SLOP + 4); in packetizing_buffer_output()
1627 if (size + PACKET_SLOP + 2 > BUFFER_DATA_SIZE) in packetizing_buffer_output()
1651 assert (translated <= size + PACKET_SLOP); in packetizing_buffer_output()
DChangeLog-97176 * buffer.c (PACKET_SLOP): Define.
177 (packetizing_buffer_initialize): Use PACKET_SLOP when allocating
179 (packetizing_buffer_input): Allow up to PACKET_SLOP bytes in
182 inbuf. Allow PACKET_SLOP + 4 extra bytes in stack_outbuf.
184 PACKET_SLOP in other tests.