Searched refs:actlen (Results 1 – 4 of 4) sorted by relevance
/glibc-2.36/iconv/ |
D | iconv_charmap.c | 494 size_t actlen = 0; in process_fd() local 496 while (actlen < maxlen) in process_fd() 498 ssize_t n = read (fd, inptr, maxlen - actlen); in process_fd() 512 actlen += n; in process_fd() 515 if (actlen == maxlen) in process_fd() 530 inptr = inbuf + actlen; in process_fd() 534 n = read (fd, inptr, maxlen - actlen); in process_fd() 548 actlen += n; in process_fd() 550 while (actlen < maxlen); in process_fd() 558 return process_block (tbl, inbuf, actlen, output); in process_fd()
|
D | iconv_prog.c | 548 size_t actlen = 0; in process_fd() local 550 while (actlen < maxlen) in process_fd() 552 ssize_t n = read (fd, inptr, maxlen - actlen); in process_fd() 566 actlen += n; in process_fd() 569 if (actlen == maxlen) in process_fd() 584 inptr = inbuf + actlen; in process_fd() 588 n = read (fd, inptr, maxlen - actlen); in process_fd() 602 actlen += n; in process_fd() 604 while (actlen < maxlen); in process_fd() 612 return process_block (cd, inbuf, actlen, output, output_file); in process_fd()
|
/glibc-2.36/debug/ |
D | realpath_chk.c | 48 size_t actlen = strlen (res) + 1; in __realpath_chk() 49 if (actlen > resolvedlen) in __realpath_chk() 52 memcpy (resolved, res, actlen); in __realpath_chk()
|
/glibc-2.36/posix/ |
D | wordexp.c | 68 w_newword (size_t *actlen, size_t *maxlen) in w_newword() argument 70 *actlen = *maxlen = 0; in w_newword() 75 w_addchar (char *buffer, size_t *actlen, size_t *maxlen, char ch) in w_addchar() argument 80 if (*actlen == *maxlen) in w_addchar() 93 buffer[*actlen] = ch; in w_addchar() 94 buffer[++(*actlen)] = '\0'; in w_addchar() 101 w_addmem (char *buffer, size_t *actlen, size_t *maxlen, const char *str, in w_addmem() argument 106 if (*actlen + len > *maxlen) in w_addmem() 119 *((char *) __mempcpy (&buffer[*actlen], str, len)) = '\0'; in w_addmem() 120 *actlen += len; in w_addmem() [all …]
|