Searched refs:convbuf (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregerror.c90 char convbuf[50]; local
93 s = regatoi(preg, convbuf, sizeof convbuf);
101 assert(strlen(r->name) < sizeof(convbuf));
102 (void) llvm_strlcpy(convbuf, r->name, sizeof convbuf);
104 (void)snprintf(convbuf, sizeof convbuf,
106 s = convbuf;
/freebsd-11-stable/contrib/nvi/regex/
H A Dregerror.c120 char convbuf[50]; local
123 s = regatoi(preg, convbuf);
131 assert(strlen(r->name) < sizeof(convbuf));
132 (void) strlcpy(convbuf, r->name, sizeof(convbuf));
134 (void) snprintf(convbuf, sizeof(convbuf),
136 s = convbuf;
/freebsd-11-stable/lib/libc/regex/
H A Dregerror.c124 char convbuf[50]; local
127 s = regatoi(preg, convbuf);
135 (void) strcpy(convbuf, r->name);
137 sprintf(convbuf, "REG_0x%x", target);
138 assert(strlen(convbuf) < sizeof(convbuf));
139 s = convbuf;
/freebsd-11-stable/lib/libc/stdio/
H A Dxprintf_str.c59 char *convbuf; local
90 if ((convbuf = malloc(nbytes + 1)) == NULL)
96 if ((nbytes = wcsrtombs(convbuf, (const wchar_t **)&p,
98 free(convbuf);
101 convbuf[nbytes] = '\0';
102 return (convbuf);
125 char *convbuf; local
132 convbuf = __wcsconv(wcp, pi->prec);
133 if (convbuf == NULL)
135 l = __printf_out(io, pi, convbuf, strle
[all...]
H A Dvfwprintf.c286 wchar_t *convbuf, *wcp; local
326 convbuf = malloc((insize + 1) * sizeof(*convbuf));
327 if (convbuf == NULL)
329 wcp = convbuf;
341 free(convbuf);
346 return (convbuf);
446 wchar_t *convbuf; /* multibyte to wide conversion result */ local
543 convbuf = NULL;
747 if (convbuf !
[all...]
H A Dvfprintf.c221 char *convbuf; local
252 if ((convbuf = malloc(nbytes + 1)) == NULL)
258 if ((nbytes = wcsrtombs(convbuf, (const wchar_t **)&p,
260 free(convbuf);
263 convbuf[nbytes] = '\0';
264 return (convbuf);
367 char *convbuf; /* wide to multibyte conversion result */ local
469 convbuf = NULL;
838 if (convbuf != NULL)
839 free(convbuf);
[all...]

Completed in 168 milliseconds