HomeSort by: relevance | last modified time | path
    Searched refs:expbuf (Results 1 - 6 of 6) sorted by relevancy

  /src/usr.bin/rdist/
expand.c 157 char expbuf[BUFSIZ]; local
191 snprintf(expbuf, sizeof(expbuf), "%s%s%s", s,
193 expstr(expbuf);
197 snprintf(expbuf, sizeof(expbuf), "%s%s", s, tail);
198 expstr(expbuf);
212 tilde = cp1 = expbuf;
218 if (pw == NULL || strcmp(pw->pw_name, expbuf+1) != 0) {
219 if ((pw = getpwnam(expbuf+1)) == NULL)
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/printf/
printf_fphex.c 97 char expbuf[5];
419 expstr = _itoa_word (exponent, expbuf + sizeof expbuf, 10, 0);
428 + ((expbuf + sizeof expbuf) - expstr));
479 PRINT (expstr, wexpstr, (expbuf + sizeof expbuf) - expstr);
95 char expbuf[5]; local
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
printf_fphex.c 97 char expbuf[5];
419 expstr = _itoa_word (exponent, expbuf + sizeof expbuf, 10, 0);
428 + ((expbuf + sizeof expbuf) - expstr));
479 PRINT (expstr, wexpstr, (expbuf + sizeof expbuf) - expstr);
95 char expbuf[5]; local
  /src/external/bsd/am-utils/dist/amd/
opts.c 59 #define BUFSPACE(ep, len) (((ep) + (len)) < expbuf+MAXPATHLEN)
1032 char expbuf[MAXPATHLEN + 1]; local
1034 char *ep = expbuf;
1315 opt = xstrdup(expbuf);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFloat.cpp 3931 SmallVector<char, 6> expbuf;
3933 expbuf.push_back((char) ('0' + (exp % 10)));
3937 if (!TruncateZero && expbuf.size() < 2)
3938 expbuf.push_back('0');
3939 for (unsigned I = 0, E = expbuf.size(); I != E; ++I)
3940 Str.push_back(expbuf[E-1-I]);
  /src/crypto/external/apache2/openssl/dist/test/
sslapitest.c 8578 const char *expbuf = is_fips ? shared_ciphers_data[tst].fipsshared local
8580 int handshakeok = strcmp(expbuf, "") != 0;
8636 || !TEST_int_eq(strcmp(buf, expbuf), 0)) {

Completed in 27 milliseconds