Lines Matching refs:j
152 int j; in normalize() local
175 for (j = 0; j < 6; j++) in normalize()
177 while (value >= powers[j].pvalue) in normalize()
179 value /= powers[j].pvalue; in normalize()
180 texp += powers[j].exp; in normalize()
186 for (j = 0; j < 6; j++) in normalize()
188 while (value <= powers[j].nvalue) in normalize()
190 value *= powers[j].pvalue; in normalize()
191 texp -= powers[j].exp; in normalize()
504 int j = in.null_idx -1; in _dcvt() local
505 while (j > 0 && in.buffer[j] == '0') in _dcvt()
507 in.buffer[j] = 0; in _dcvt()
508 j--; in _dcvt()
511 if (j > 0 && buffer[j] == '.') in _dcvt()
512 in.buffer[j] = 0; in _dcvt()