Home | History | Annotate | Download | only in common

Lines Matching refs:POW10

57 // POW10[i] = 10^i, i=0..MAX_POW10
58 static const int32_t POW10[] = { 1, 10, 100, 1000, 10000, 100000,
61 static const int32_t MAX_POW10 = UPRV_LENGTHOF(POW10) - 1;
1629 result = double(increment) / POW10[fracDigits];