HomeSort by relevance Sort by last modified time
    Searched refs:tens (Results 1 - 11 of 11) sorted by null

  /packages/apps/Settings/src/com/android/settings/
BatteryInfo.java 69 int tens = x / 10; local
70 return Integer.toString(tens) + "." + (x - 10 * tens);
  /external/qemu/
trace.c 281 uint32_t tens = year / 10; local
282 year -= tens * 10;
284 year = (thousands << 12) | (hundreds << 8) | (tens << 4) | ones;
287 tens = mon / 10;
288 ones = (mon - tens * 10);
289 mon = (tens << 4) | ones;
292 tens = day / 10;
293 ones = (day - tens * 10);
294 day = (tens << 4) | ones;
299 tens = hour / 10
    [all...]
  /external/quake/quake/src/WinQuake/
sbar.cpp 460 int minutes, seconds, tens, units; local
472 tens = seconds / 10;
473 units = seconds - 10*tens;
474 sprintf (str,"Time :%3i:%i%i", minutes, tens, units);
1143 int n, minutes, tens, units;
1149 tens = n/10;
1152 sprintf (num, "%3i:%i%i", minutes, tens, units);
1245 int n, minutes, tens, units;
1251 tens = n/10;
1254 sprintf (num, "%3i:%i%i", minutes, tens, units)
    [all...]
  /gdk/samples/quake/jni/
sbar.cpp 460 int minutes, seconds, tens, units; local
472 tens = seconds / 10;
473 units = seconds - 10*tens;
474 sprintf (str,"Time :%3i:%i%i", minutes, tens, units);
1143 int n, minutes, tens, units;
1149 tens = n/10;
1152 sprintf (num, "%3i:%i%i", minutes, tens, units);
1245 int n, minutes, tens, units;
1251 tens = n/10;
1254 sprintf (num, "%3i:%i%i", minutes, tens, units)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 731 static const double tens[] = { member in namespace:WTF
885 dval(&rv) = tens[k - 9] * dval(&rv) + z;
891 /* rv = */ rounded_product(dval(&rv), tens[e]); local
900 dval(&rv) *= tens[i];
901 /* rv = */ rounded_product(dval(&rv), tens[e]); local
905 /* rv = */ rounded_quotient(dval(&rv), tens[-e]); local
917 dval(&rv) *= tens[i];
949 dval(&rv) /= tens[i];
    [all...]
  /bionic/libc/stdlib/
strtod.c 1306 tens[] = { variable
1515 value(rv) = tens[k - 9] * value(rv) + z;
1530 tens[e]);
1540 value(rv) *= tens[i];
1548 tens[e]); local
1555 tens[e]); local
1563 tens[-e]); local
1574 value(rv) *= tens[i];
1609 value(rv) /= tens[i];
    [all...]
  /external/quake/quake/src/QW/client/
sbar.c 480 int minutes, seconds, tens, units; local
487 tens = seconds / 10;
488 units = seconds - 10*tens;
489 sprintf (str,"Time :%3i:%i%i", minutes, tens, units);
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 1440 tens[] = { member in namespace:dmg_fp
2700 \/* rv = *\/ rounded_product(dval(&rv), tens[e]); variable
2706 \/* rv = *\/ rounded_product(dval(&rv), tens[e]); variable
2720 \/* rv = *\/ rounded_quotient(dval(&rv), tens[-e]); variable
    [all...]
  /external/skia/src/core/
SkString.cpp 164 const uint16_t* tens = gTens; local
173 unsigned powerOfTen = *tens++;
  /external/webkit/Source/WebCore/rendering/
RenderListMarker.cpp 177 if (int tens = number / 10) {
179 letters[length++] = hebrewTens[tens - 1];
241 if (int tens = (number / 10) % 10) {
242 letters[length++] = (0x053A - 1 + lowerOffset) + tens;
296 if (int tens = (number / 10) % 10) {
300 letters[length++] = georgianTens[tens - 1];
366 // Remove the tens digit, but leave the marker, for any group that has
    [all...]
  /external/zxing/core/
core.jar 

Completed in 814 milliseconds