Searched refs:OUTBUFSIZ (Results 1 - 4 of 4) sorted by relevance

/haiku/src/bin/unzip/
H A Dunzpriv.h882 /* Logic for case of small memory, length of EOL > 1: if OUTBUFSIZ == 2048,
883 * OUTBUFSIZ>>1 == 1024 and OUTBUFSIZ>>7 == 16; therefore rawbuf is 1008 bytes
887 * (Argument scales for larger OUTBUFSIZ.)
899 # define OUTBUFSIZ INBUFSIZ macro
901 # define RAWBUFSIZ (OUTBUFSIZ>>1)
903 # define RAWBUFSIZ ((OUTBUFSIZ>>1) - (OUTBUFSIZ>>7))
905 # define TRANSBUFSIZ (OUTBUFSIZ-RAWBUFSIZ)
919 # define OUTBUFSIZ macro
923 # define OUTBUFSIZ macro
[all...]
H A Dunshrink.c157 outbufsiz = OUTBUFSIZ;
H A Dfileio.c819 transbufsiz = OUTBUFSIZ;
820 Trace((stderr, "\ntransbufsiz = OUTBUFSIZ = %u\n",
821 (unsigned)OUTBUFSIZ));
2015 * variables, then loop through the comment in chunks of OUTBUFSIZ bytes,
2027 block_len = OUTBUFSIZ; /* for the while statement, first time */
2033 MIN((unsigned)OUTBUFSIZ, comment_bytes_left))) == 0)
H A Dprocess.c183 G.outbuf = (uch *)malloc(OUTBUFSIZ + 1); /* 1 extra for string term. */

Completed in 127 milliseconds