Lines Matching defs:old
32 * uncompress(method, old, n, newch) - uncompress old into new,
316 //We can use sig_act for both new and old, but
578 uncompressgzipped(const unsigned char *old, unsigned char **newch,
588 flg = old[3];
593 data_start += 2 + old[data_start] + old[data_start + 1] * 256;
596 while(data_start < *n && old[data_start])
601 while(data_start < *n && old[data_start])
612 old += data_start;
613 return uncompresszlib(old, newch, bytes_max, n, 0);
619 uncompresszlib(const unsigned char *old, unsigned char **newch,
626 z.next_in = CCAST(Bytef *, old);
661 uncompressbzlib(const unsigned char *old, unsigned char **newch,
673 bz.next_in = CCAST(char *, RCAST(const char *, old));
702 uncompressxzlib(const unsigned char *old, unsigned char **newch,
714 xz.next_in = CCAST(const uint8_t *, old);
740 uncompresszstd(const unsigned char *old, unsigned char **newch,
758 in.src = CCAST(const void *, old);
785 uncompresslzlib(const unsigned char *old, unsigned char **newch,
810 int wr = LZ_decompress_write(dec, old, old_remaining);
814 old += wr;
848 uncompresslrzip(const unsigned char *old, unsigned char **newch,
862 in = fmemopen(RCAST(void *, old), bytes_max, "r");
998 writechild(int fd, const void *old, size_t n)
1013 if (swrite(fd, old, n) != CAST(ssize_t, n)) {
1125 const unsigned char *old, unsigned char **newch, size_t* n)
1149 return (*decompress)(old, newch, bytes_max, n, 1);
1228 writepid = writechild(fdp[STDIN_FILENO][1], old, *n);