Searched refs:expbuf (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/lib/libc/stdio/
H A Dprintfcommon.h275 CHAR expbuf[MAXEXPDIG]; local
285 t = expbuf + MAXEXPDIG;
291 for (; t < expbuf + MAXEXPDIG; *p++ = *t++);
H A Dxprintf_float.c87 char expbuf[MAXEXPDIG]; local
97 t = expbuf + MAXEXPDIG;
103 for (; t < expbuf + MAXEXPDIG; *p++ = *t++)
/freebsd-9.3-release/contrib/amd/amd/
H A Dopts.c61 #define BUFSPACE(ep, len) (((ep) + (len)) < expbuf+MAXPATHLEN)
1034 char expbuf[MAXPATHLEN + 1]; local
1036 char *ep = expbuf;
1311 opt = strdup(expbuf);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DAPFloat.cpp3672 SmallVector<char, 6> expbuf;
3674 expbuf.push_back((char) ('0' + (exp % 10)));
3677 for (unsigned I = 0, E = expbuf.size(); I != E; ++I)
3678 Str.push_back(expbuf[E-1-I]);

Completed in 108 milliseconds