Home | History | Annotate | Download | only in common

Lines Matching refs:POW10

66 // POW10[i] = 10^i, i=0..MAX_POW10
67 static const int32_t POW10[] = { 1, 10, 100, 1000, 10000, 100000,
70 static const int32_t MAX_POW10 = UPRV_LENGTHOF(POW10) - 1;
1709 result = double(increment) / POW10[fracDigits];