Searched refs:in_buff (Results 1 - 2 of 2) sorted by last modified time

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_uu.c48 unsigned char *in_buff; member in struct:uudecode
365 void *in_buff; local
375 in_buff = malloc(IN_BUFF_SIZE);
376 if (uudecode == NULL || out_buff == NULL || in_buff == NULL) {
381 free(in_buff);
386 uudecode->in_buff = in_buff;
405 * Calculate a new buffer size for in_buff.
424 /* Move the remaining data in in_buff into the new buffer. */
426 memmove(ptr, uudecode->in_buff, uudecod
[all...]
/freebsd-11-stable/contrib/ee/
H A Dnew_curse.c466 char in_buff[100]; /* buffer for ungetch */ variable
467 int bufp; /* next free position in in_buff */
2220 in_buff[bufp++] = c;
2268 in_value = ((bufp > 0) ? in_buff[--bufp] : timed_getchar());
2270 in_value = ((bufp > 0) ? in_buff[--bufp] : read(0, &temp, 1)? temp : -1);
2273 in_value = ((bufp > 0) ? in_buff[--bufp] :
2282 in_value = ((bufp > 0) ? in_buff[--bufp] : read(0, &temp, 1)? temp : -1);

Completed in 129 milliseconds