Home
last modified time | relevance | path

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

/openbsd/usr.bin/cvs/
H A Drcs.c2290 if (strlcat(expbuf, "$", sizeof(expbuf)) >= in rcs_kwexp_line()
2291 sizeof(expbuf) || strlcat(expbuf, kwstr, in rcs_kwexp_line()
2292 sizeof(expbuf)) >= sizeof(expbuf)) in rcs_kwexp_line()
2295 strlcat(expbuf, ": ", sizeof(expbuf)) >= in rcs_kwexp_line()
2312 if (strlcat(expbuf, " ", sizeof(expbuf)) >= in rcs_kwexp_line()
2331 if (strlcat(expbuf, buf, sizeof(expbuf)) >= in rcs_kwexp_line()
2357 sizeof(expbuf)) >= sizeof(expbuf) || in rcs_kwexp_line()
2366 sizeof(expbuf)) >= sizeof(expbuf) || in rcs_kwexp_line()
2486 sizeof(expbuf) || strlcat(expbuf, " ", in rcs_kwexp_line()
2487 sizeof(expbuf)) >= sizeof(expbuf)) in rcs_kwexp_line()
[all …]
/openbsd/usr.sbin/amd/amd/
H A Dopts.c378 #define BUFSPACE(ep, len) (((ep) + (len)) < expbuf+PATH_MAX) in expand_op()
381 char expbuf[PATH_MAX+1]; in expand_op() local
383 char *ep = expbuf; in expand_op()
569 strlcpy(ep, vptr, expbuf + sizeof expbuf - ep); in expand_op()
596 strlcpy(ep, env, expbuf + sizeof expbuf - ep); in expand_op()
629 strlcpy(ep, cp, expbuf + sizeof expbuf - ep); in expand_op()
637 *p->opt = strdup(expbuf); in expand_op()
/openbsd/usr.bin/rdistd/
H A Dserver.c1206 static char expbuf[BUFSIZ]; in hardlink() local
1238 if (exptilde(expbuf, oldname, sizeof(expbuf)) == NULL) { in hardlink()
1266 if (linkat(AT_FDCWD, expbuf, AT_FDCWD, target, 0) == -1) { in hardlink()
/openbsd/lib/libc/stdio/
H A Dvfprintf.c1505 char expbuf[MAXEXPDIG]; in exponent() local
1514 t = expbuf + MAXEXPDIG; in exponent()
1520 for (; t < expbuf + MAXEXPDIG; *p++ = *t++) in exponent()
H A Dvfwprintf.c1503 wchar_t expbuf[MAXEXPDIG]; in exponent() local
1512 t = expbuf + MAXEXPDIG; in exponent()
1518 for (; t < expbuf + MAXEXPDIG; *p++ = *t++) in exponent()
/openbsd/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp4198 SmallVector<char, 6> expbuf; in toString() local
4200 expbuf.push_back((char) ('0' + (exp % 10))); in toString()
4204 if (!TruncateZero && expbuf.size() < 2) in toString()
4205 expbuf.push_back('0'); in toString()
4206 for (unsigned I = 0, E = expbuf.size(); I != E; ++I) in toString()
4207 Str.push_back(expbuf[E-1-I]); in toString()