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

/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dprintfcommon.h269 CHAR expbuf[MAXEXPDIG]; local
279 t = expbuf + MAXEXPDIG;
285 for (; t < expbuf + MAXEXPDIG; *p++ = *t++);
H A Dxprintf_float.c91 char expbuf[MAXEXPDIG]; local
101 t = expbuf + MAXEXPDIG;
107 for (; t < expbuf + MAXEXPDIG; *p++ = *t++)
/macosx-10.10.1/apache-793/httpd/modules/filters/
H A Dsed0.c34 static char *address(sed_commands_t *commands, char *expbuf,
38 static char *ycomp(sed_commands_t *commands, char *expbuf);
812 static char *address(sed_commands_t *commands, char *expbuf, argument
821 if (expbuf > &commands->respace[RESIZE-2]) {
827 *expbuf++ = CEND;
828 *expbuf++ = CCEOF;
829 return(expbuf);
835 return(comple(commands, &compargs, (char *) 0, expbuf, commands->reend,
846 if (expbuf > &commands->respace[RESIZE-3]) {
851 *expbuf
926 ycomp(sed_commands_t *commands, char *expbuf) argument
[all...]
H A Dsed1.c67 static int match(sed_eval_t *eval, char *expbuf, int gf,
582 static int match(sed_eval_t *eval, char *expbuf, int gf, argument
589 if(*expbuf) return(0);
596 circf = *expbuf++;
597 return(sed_step(p1, expbuf, circf, step_vars));
/macosx-10.10.1/uucp-11/uucp/contrib/
H A Dxchat.c752 static char expbuf[MAX_EXPCT]; local
844 charlog(expbuf, expin, DB_LOG,
1083 expbuf[expin++] = chr & 0x7f;
1087 strncpy(expbuf, &expbuf[1], MAX_EXPCT-1);
1088 expbuf[MAX_EXPCT-1] = chr & 0x7f;
1134 &expbuf[expin - curscr->intprm],
1154 (strncmp(tempstr,&expbuf[expin-prmlen],
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/sgi/
H A Dsgi.c801 static int img_rle_compact(unsigned short *expbuf, int ibpp, argument
805 register unsigned char *iptr = (unsigned char *)expbuf;
815 register unsigned char *iptr = (unsigned char *)expbuf;
825 register unsigned short *iptr = expbuf;
835 register unsigned short *iptr = expbuf;
866 unsigned short *expbuf, int obpp)
870 register unsigned char *optr = (unsigned char *)expbuf;
876 register unsigned short *optr = expbuf;
882 register unsigned char *optr = (unsigned char *)expbuf;
888 register unsigned short *optr = expbuf;
865 img_rle_expand(unsigned short *rlebuf, int ibpp, unsigned short *expbuf, int obpp) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/
H A Dvsnprintf.c1274 char expbuf[2 + (MAXEXP < 1000 ? 3 : MAXEXP < 10000 ? 4 : 5)]; /* >= 2 + ceil(log10(MAXEXP)) */ local
1284 t = expbuf + sizeof(expbuf);
1290 for (; t < expbuf + sizeof(expbuf); *p++ = *t++);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DAPFloat.cpp3570 SmallVector<char, 6> expbuf;
3572 expbuf.push_back((char) ('0' + (exp % 10)));
3575 for (unsigned I = 0, E = expbuf.size(); I != E; ++I)
3576 Str.push_back(expbuf[E-1-I]);

Completed in 303 milliseconds