Searched defs:convbuf (Results 1 - 3 of 3) sorted by relevance
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
H A D | regerror.c | 172 char convbuf[50]; local 178 s = regatoi(preg, convbuf, sizeof convbuf); 186 (void)strlcpy(convbuf, r->name, sizeof convbuf); 188 (void)snprintf(convbuf, sizeof convbuf, 190 s = convbuf;
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
H A D | vfprintf.c | 160 char *convbuf; local 193 if ((convbuf = malloc(nbytes + 1)) == NULL) 199 if ((nbytes = wcsrtombs(convbuf, (const wchar_t **)&p, 201 free(convbuf); 204 convbuf[nbytes] = '\0'; 205 return (convbuf); 331 char *convbuf; /* buffer for wide to multi-byte conversion */ local 480 convbuf = NULL; 857 free(convbuf); 858 convbuf [all...] |
H A D | vfwprintf.c | 169 wchar_t *convbuf, *wcp; local 207 convbuf = calloc(insize + 1, sizeof(*convbuf)); 208 if (convbuf == NULL) 210 wcp = convbuf; 223 free(convbuf); 228 return (convbuf); 334 wchar_t *convbuf; /* buffer for multibyte to wide conversion */ local 464 convbuf = NULL; 670 free(convbuf); [all...] |
Completed in 104 milliseconds