Home | History | Annotate | Download | only in i18n

Lines Matching defs:POW10

50 // POW10[i] = 10^i, i=0..MAX_POW10
51 static const int32_t POW10[] = { 1, 10, 100, 1000, 10000, 100000,
54 static const int32_t MAX_POW10 = (sizeof(POW10)/sizeof(POW10[0])) - 1;
1468 return double(data[1]) / POW10[data[0]];