Home
last modified time | relevance | path

Searched refs:expbuf (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/usr.bin/rdist/
H A Dexpand.c157 char expbuf[BUFSIZ]; in expstr() local
191 snprintf(expbuf, sizeof(expbuf), "%s%s%s", s, in expstr()
193 expstr(expbuf); in expstr()
197 snprintf(expbuf, sizeof(expbuf), "%s%s", s, tail); in expstr()
198 expstr(expbuf); in expstr()
212 tilde = cp1 = expbuf; in expstr()
218 if (pw == NULL || strcmp(pw->pw_name, expbuf+1) != 0) { in expstr()
219 if ((pw = getpwnam(expbuf+1)) == NULL) { in expstr()
220 strlcat(expbuf, ": unknown user name", in expstr()
221 sizeof(expbuf)); in expstr()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libquadmath/printf/
H A Dprintf_fphex.c95 char expbuf[5]; in __quadmath_printf_fphex() local
417 expstr = _itoa_word (exponent, expbuf + sizeof expbuf, 10, 0); in __quadmath_printf_fphex()
426 + ((expbuf + sizeof expbuf) - expstr)); in __quadmath_printf_fphex()
477 PRINT (expstr, wexpstr, (expbuf + sizeof expbuf) - expstr); in __quadmath_printf_fphex()
/netbsd-src/external/gpl3/gcc.old/dist/libquadmath/printf/
H A Dprintf_fphex.c95 char expbuf[5]; in __quadmath_printf_fphex() local
416 expstr = _itoa_word (exponent, expbuf + sizeof expbuf, 10, 0); in __quadmath_printf_fphex()
425 + ((expbuf + sizeof expbuf) - expstr)); in __quadmath_printf_fphex()
476 PRINT (expstr, wexpstr, (expbuf + sizeof expbuf) - expstr); in __quadmath_printf_fphex()
/netbsd-src/external/bsd/am-utils/dist/amd/
H A Dopts.c59 #define BUFSPACE(ep, len) (((ep) + (len)) < expbuf+MAXPATHLEN)
1032 char expbuf[MAXPATHLEN + 1]; in expand_op() local
1034 char *ep = expbuf; in expand_op()
1315 opt = xstrdup(expbuf); in expand_op()
/netbsd-src/lib/libc/stdio/
H A Dvfwprintf.c1951 CHAR_T expbuf[MAXEXPDIG]; in exponent() local
1961 t = expbuf + MAXEXPDIG; in exponent()
1967 for (; t < expbuf + MAXEXPDIG; *p++ = *t++); in exponent()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp3931 SmallVector<char, 6> expbuf; in toString() local
3933 expbuf.push_back((char) ('0' + (exp % 10))); in toString()
3937 if (!TruncateZero && expbuf.size() < 2) in toString()
3938 expbuf.push_back('0'); in toString()
3939 for (unsigned I = 0, E = expbuf.size(); I != E; ++I) in toString()
3940 Str.push_back(expbuf[E-1-I]); in toString()