Lines Matching refs:size_t

101 	size_t maglen;
130 private ssize_t swrite(int, const void *, size_t);
132 private size_t ncompr = sizeof(compr) / sizeof(compr[0]);
133 private int uncompressbuf(int, size_t, size_t, const unsigned char *,
134 unsigned char **, size_t *);
136 private int uncompresszlib(const unsigned char *, unsigned char **, size_t,
137 size_t *, int);
138 private int uncompressgzipped(const unsigned char *, unsigned char **, size_t,
139 size_t *);
141 static int makeerror(unsigned char **, size_t *, const char *, ...);
142 private const char *methodname(size_t);
146 const unsigned char *buf, size_t nbytes) in file_zmagic()
149 size_t i, nsz; in file_zmagic()
247 swrite(int fd, const void *buf, size_t n) in swrite()
250 size_t rn = n; in swrite()
272 sread(int fd, void *buf, size_t n, int canbepipe) in sread()
278 size_t rn = n; in sread()
312 if (t > 0 && (size_t)t < n) { in sread()
338 size_t nbytes) in file_pipe2file()
372 if (swrite(tfd, buf, (size_t)r) != r) in file_pipe2file()
415 size_t bytes_max, size_t *n) in uncompressgzipped()
418 size_t data_start = 10; in uncompressgzipped()
450 size_t bytes_max, size_t *n, int zlib) in uncompresszlib()
475 *n = (size_t)z.total_out; in uncompresszlib()
492 makeerror(unsigned char **buf, size_t *len, const char *fmt, ...) in makeerror()
512 closefd(int *fd, size_t i) in closefd()
523 size_t i; in closep()
542 writechild(int fdp[3][2], const void *old, size_t n) in writechild()
596 memmove(ubuf, p, CAST(size_t, n + 1)); in filter_error()
605 methodname(size_t method) in methodname()
616 uncompressbuf(int fd, size_t bytes_max, size_t method, const unsigned char *old, in uncompressbuf()
617 unsigned char **newch, size_t* n) in uncompressbuf()
621 size_t i; in uncompressbuf()