Lines Matching refs:newch
321 unsigned char **newch, size_t n) in uncompressgzipped() argument
348 *newch = (unsigned char *)emalloc(HOWMANY + 1)); in uncompressgzipped()
354 z.next_out = *newch; in uncompressgzipped()
377 (*newch)[n] = '\0'; in uncompressgzipped()
385 const unsigned char *old, unsigned char **newch, size_t n) in uncompressbuf() argument
394 return uncompressgzipped(ms, old, newch, n); in uncompressbuf()
473 *newch = (unsigned char *) emalloc(HOWMANY + 1); in uncompressbuf()
475 if ((r = sread(fdout[0], *newch, HOWMANY, 0)) <= 0) { in uncompressbuf()
480 efree(*newch); in uncompressbuf()
482 newch[0] = '\0'; in uncompressbuf()
488 (*newch)[n] = '\0'; in uncompressbuf()