Home | History | Annotate | Download | only in Objects

Lines Matching refs:convwidth

1854         int convwidth;

1900 /* `convwidth` consecutive input digits are treated as a single
1903 convwidth = convwidth_base[base];
1908 /* grab up to convwidth digits from the input string */
1910 for (i = 1; i < convwidth && str != scan; ++i, ++str) {
1918 * convwidth digits.
1920 if (i != convwidth) {