Lines Matching refs:size
193 int realsz; /* field size expanded by dprec */
194 int size; /* size of converted field or string */
207 ** Choose PADSIZE to trade efficiency vs. size. If larger printf
211 #define PADSIZE 16 /* pad chunk size */
475 size = 1;
620 size = p - cp;
621 if (size > prec)
622 size = prec;
625 size = prec;
628 size = strlen(cp);
709 size = strlen(cp);
713 size = buf + BUF - cp;
722 size = 1;
738 ** Compute actual size, so we know how much to pad.
739 ** size excludes decimal prec; realsz includes it.
742 realsz = dprec > size ? dprec : size;
769 PAD(dprec - size, zeroes);
772 PRINT(cp, size);
839 int tablesize; /* current size of type table */
1085 ** SM_GROW_TYPE_TABLE -- Increase the size of the type table.
1089 ** tablesize -- requested new table size