Lines Matching refs:old
568 uncompressgzipped(const unsigned char *old, unsigned char **newch, in uncompressgzipped() argument
578 flg = old[3]; in uncompressgzipped()
583 data_start += 2 + old[data_start] + old[data_start + 1] * 256; in uncompressgzipped()
586 while(data_start < *n && old[data_start]) in uncompressgzipped()
591 while(data_start < *n && old[data_start]) in uncompressgzipped()
602 old += data_start; in uncompressgzipped()
603 return uncompresszlib(old, newch, bytes_max, n, 0); in uncompressgzipped()
609 uncompresszlib(const unsigned char *old, unsigned char **newch, in uncompresszlib() argument
616 z.next_in = CCAST(Bytef *, old); in uncompresszlib()
651 uncompressbzlib(const unsigned char *old, unsigned char **newch, in uncompressbzlib() argument
663 bz.next_in = CCAST(char *, RCAST(const char *, old)); in uncompressbzlib()
692 uncompressxzlib(const unsigned char *old, unsigned char **newch, in uncompressxzlib() argument
704 xz.next_in = CCAST(const uint8_t *, old); in uncompressxzlib()
730 uncompresszstd(const unsigned char *old, unsigned char **newch, in uncompresszstd() argument
748 in.src = CCAST(const void *, old); in uncompresszstd()
775 uncompresslzlib(const unsigned char *old, unsigned char **newch, in uncompresslzlib() argument
800 int wr = LZ_decompress_write(dec, old, old_remaining); in uncompresslzlib()
804 old += wr; in uncompresslzlib()
935 writechild(int fd, const void *old, size_t n) in writechild() argument
950 if (swrite(fd, old, n) != CAST(ssize_t, n)) { in writechild()
1054 const unsigned char *old, unsigned char **newch, size_t* n) in uncompressbuf() argument
1078 return (*decompress)(old, newch, bytes_max, n, 1); in uncompressbuf()
1157 writepid = writechild(fdp[STDIN_FILENO][1], old, *n); in uncompressbuf()