Home
last modified time | relevance | path

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

/haiku/src/bin/unzip/
H A Dunzpriv.h899 # define OUTBUFSIZ INBUFSIZ macro
901 # define RAWBUFSIZ (OUTBUFSIZ>>1)
903 # define RAWBUFSIZ ((OUTBUFSIZ>>1) - (OUTBUFSIZ>>7))
905 # define TRANSBUFSIZ (OUTBUFSIZ-RAWBUFSIZ)
919 # define OUTBUFSIZ 0xFF80 /* can't malloc arrays of 0xFFE8 or more */ macro
923 # define OUTBUFSIZ (lenEOL*WSIZE) /* more efficient text conversion */ macro
924 # define TRANSBUFSIZ (lenEOL*OUTBUFSIZ)
931 # define RAWBUFSIZ OUTBUFSIZ
H A Dunshrink.c157 outbufsiz = OUTBUFSIZ; in unshrink()
H A Dfileio.c819 transbufsiz = OUTBUFSIZ;
821 (unsigned)OUTBUFSIZ));
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. */ in process_zipfiles()