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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fpformat.py 36 """Return (sign, intpart, fraction, expo) or raise an exception:
38 intpart is 0 or more digits beginning with a nonzero
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
48 return sign, intpart, fraction, expo
50 def unexpo(intpart, fraction, expo):
51 """Remove the exponent by changing intpart and fraction."""
54 intpart, fraction = intpart + fraction[:expo], fraction[expo:]
56 intpart = intpart + '0'*(expo-f
    [all...]
decimal.py 554 intpart = m.group('int')
555 if intpart is not None:
559 self._int = str(int(intpart+fracpart))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fpformat.py 36 """Return (sign, intpart, fraction, expo) or raise an exception:
38 intpart is 0 or more digits beginning with a nonzero
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
48 return sign, intpart, fraction, expo
50 def unexpo(intpart, fraction, expo):
51 """Remove the exponent by changing intpart and fraction."""
54 intpart, fraction = intpart + fraction[:expo], fraction[expo:]
56 intpart = intpart + '0'*(expo-f
    [all...]
decimal.py 554 intpart = m.group('int')
555 if intpart is not None:
559 self._int = str(int(intpart+fracpart))
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
b_print.c 592 long intpart; local
593 intpart = (long) value;
594 value = value - intpart;
596 intpart++;
597 return intpart;
620 long intpart; local
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
647 intpart++;
655 : "0123456789abcdef")[intpart % 10]
    [all...]
  /external/openssh/openbsd-compat/
bsd-snprintf.c 624 LLONG intpart; local
626 intpart = (LLONG)value;
627 value = value - intpart;
628 if (value >= 0.5) intpart++;
630 return intpart;
686 double intpart; local
730 my_modf(temp, &intpart);
732 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
735 intpart++;
741 temp = intpart*0.1
    [all...]
  /external/openssl/crypto/bio/
b_print.c 592 long intpart; local
593 intpart = (long) value;
594 value = value - intpart;
596 intpart++;
597 return intpart;
620 long intpart; local
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
647 intpart++;
655 : "0123456789abcdef")[intpart % 10]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_snprintf.c 1000 UINTMAX_T intpart; local
1107 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) {
1121 if ((fracpart = myround(mask * (ufvalue - intpart))) >= mask) {
1123 * For example, ufvalue = 2.99962, intpart = 2, and mask = 1000
1128 intpart++;
1130 if (estyle && intpart == 10) {
1137 intpart = 1;
1380 UINTMAX_T intpart = cast(value); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 1000 UINTMAX_T intpart; local
1107 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) {
1121 if ((fracpart = myround(mask * (ufvalue - intpart))) >= mask) {
1123 * For example, ufvalue = 2.99962, intpart = 2, and mask = 1000
1128 intpart++;
1130 if (estyle && intpart == 10) {
1137 intpart = 1;
1380 UINTMAX_T intpart = cast(value); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strtod.py 40 intpart = int(m.group('int') + fraction)
43 a, b = intpart*10**max(exp, 0), 10**max(0, -exp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strtod.py 40 intpart = int(m.group('int') + fraction)
43 a, b = intpart*10**max(exp, 0), 10**max(0, -exp)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /external/chromium_org/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js     [all...]

Completed in 572 milliseconds