Home | History | Annotate | Download | only in stdio

Lines Matching defs:PAD

151 #define	ZEROPAD		0x0080		/* zero (as opposed to blank) pad */
216 #define PADSIZE 16 /* pad chunk size */
223 * BEWARE, these `goto error' on error, and PAD uses `n'.
236 #define PAD(howmany, with) do { \
724 * floating precision; finally, if LADJUST, pad with blanks.
726 * Compute actual size, so we know how much to pad.
737 PAD(width - realsz, blanks);
750 PAD(width - realsz, zeroes);
753 PAD(dprec - size, zeroes);
766 PAD(ndig - 1, zeroes);
771 PAD(-expt, zeroes);
775 PAD(expt - ndig, zeroes);
793 PAD(ndig - 1, zeroes);
804 PAD(width - realsz, blanks);