• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/lsof-52/lsof/lib/

Lines Matching refs:ep

204 _PROTOTYPE(static void dopr,(char *bp, char *ep, char *fmt, va_list args));
205 _PROTOTYPE(static void dopr_outch,(char **bp, char *ep, int c));
206 _PROTOTYPE(static void dostr,(char **bp, char *ep, char *str, int));
209 _PROTOTYPE(static void fmtllnum,(char **bp, char *ep, long long value,
214 _PROTOTYPE(static void fmtnum,(char **bp, char *ep, long value, int base,
216 _PROTOTYPE(static void fmtstr,(char **bp, char *ep, char *value, int ljust,
265 char *ep = str + count - 1;
268 (void) dopr(str, ep, fmt, args);
270 *ep = '\0';
281 dopr(bp, ep, fmt, args)
283 char *ep; /* buffer end (start + length - 1) */
317 dostr(&bp, ep, "**end of format**" , 0);
365 (void) fmtllnum(&bp,ep,llvalue,10,0,ljust,len,zpad);
369 (void) dostr(&bp, ep, ebuf, 0);
378 (void) fmtnum(&bp, ep, value, 10,0, ljust, len, zpad);
386 (void) fmtllnum(&bp,ep,llvalue,8,0,ljust,len,zpad);
390 (void) dostr(&bp, ep, ebuf, 0);
399 (void) fmtnum(&bp, ep, value, 8,0, ljust, len, zpad);
407 (void) fmtllnum(&bp,ep,llvalue,10,1,ljust,len,zpad);
411 (void) dostr(&bp, ep, ebuf, 0);
420 (void) fmtnum(&bp, ep, value, 10,1, ljust, len, zpad);
428 (void) dostr(&bp, ep, "0x", 0);
432 (void) fmtllnum(&bp,ep,llvalue,16,0,ljust,len,zpad);
436 (void) dostr(&bp, ep, ebuf, 0);
446 (void) dostr(&bp, ep, "0x", 0);
450 (void) fmtnum(&bp, ep, value, 16,0, ljust, len, zpad);
458 (void) dostr(&bp, ep, "0x", 0);
462 (void) fmtllnum(&bp,ep,llvalue,-16,0,ljust,len,zpad);
466 (void) dostr(&bp, ep, ebuf, 0);
476 (void) dostr(&bp, ep, "0x", 0);
480 (void) fmtnum(&bp, ep, value,-16,0, ljust, len, zpad);
487 (void) fmtstr(&bp, ep, strvalue, ljust, len, zpad,
493 dopr_outch(&bp, ep, ch);
496 (void) dopr_outch(&bp, ep, ch);
502 (void) dostr(&bp, ep, ebuf, 0);
506 (void) dopr_outch(&bp, ep, ch);
520 fmtllnum(bp, ep, value, base, dosign, ljust, len, zpad)
522 char *ep; /* end of buffer (-1) */
562 (void) dopr_outch(bp, ep, signvalue);
567 (void) dopr_outch(bp, ep, zpad);
572 (void) dopr_outch(bp, ep, ' ');
576 (void) dopr_outch(bp, ep, signvalue);
578 (void) dopr_outch(bp, ep, convert[--place]);
580 (void) dopr_outch(bp, ep, ' ');
592 fmtnum(bp, ep, value, base, dosign, ljust, len, zpad)
594 char *ep; /* end of buffer (-1) */
634 (void) dopr_outch(bp, ep, signvalue);
639 (void) dopr_outch(bp, ep, zpad);
644 (void) dopr_outch(bp, ep, ' ');
648 (void) dopr_outch(bp, ep, signvalue);
650 (void) dopr_outch(bp, ep, convert[--place]);
652 (void) dopr_outch(bp, ep, ' ');
663 fmtstr(bp, ep, value, ljust, len, zpad, maxwidth)
665 char *ep; /* end of buffer (-1) */
686 (void) dopr_outch(bp, ep, ' ');
689 (void) dostr(bp, ep, value, maxwidth);
691 (void) dopr_outch(bp, ep, ' ');
702 dostr(bp, ep, str, cut)
704 char *ep; /* end of buffer (-1) */
715 (void) dopr_outch(bp, ep, *str);
717 (void) dopr_outch(bp, ep, *str);
728 dopr_outch(bp, ep, c)
730 char *ep; /* end of buffer (-1) */
737 if (cp < ep)
741 if (cp < ep)