HomeSort by relevance Sort by last modified time
    Searched refs:digits (Results 301 - 325 of 1027) sorted by null

<<11121314151617181920>>

  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
BigDecimal.java 80 /* 1999.02.04 lostdigits=0 behaviour rounds instead of digits+1 guard */
95 /* 1999.06.29 1.02 constructors should not allow exponent > 9 digits */
96 /* 1999.07.03 1.03 lost digits should not be checked if digits=0 */
97 /* 1999.07.06 lost digits Exception message changed */
132 * <i>operator methods</i>. The default settings provided by the constant {@link MathContext#DEFAULT} (<code>digits=9,
134 * arithmetic to nine digits of precision. The <code>MathContext</code> parameter must not be <code>null</code>.
137 * version of each method, the context settings used are <code>digits=0,
165 * <li>Results are normally calculated with up to some maximum number of significant digits. For example, if the
167 * rounded to 9 digits; the division of 2 by 3 would then result in 0.666666667. <br
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
BigDecimal.java 82 /* 1999.02.04 lostdigits=0 behaviour rounds instead of digits+1 guard */
97 /* 1999.06.29 1.02 constructors should not allow exponent > 9 digits */
98 /* 1999.07.03 1.03 lost digits should not be checked if digits=0 */
99 /* 1999.07.06 lost digits Exception message changed */
134 * <i>operator methods</i>. The default settings provided by the constant {@link MathContext#DEFAULT} (<code>digits=9,
136 * arithmetic to nine digits of precision. The <code>MathContext</code> parameter must not be <code>null</code>.
139 * version of each method, the context settings used are <code>digits=0,
167 * <li>Results are normally calculated with up to some maximum number of significant digits. For example, if the
169 * rounded to 9 digits; the division of 2 by 3 would then result in 0.666666667. <br
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
193 number of zero digits are appended to the coefficient ("fold-down").
255 divide-integer or remainder operation had too many digits (would be
277 not exact (that is, it needed to be rounded and any discarded digits
303 rounded (that is, some zero or non-zero digits were discarded from the
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
536 # digits.
623 # process and validate the digits in value[1]
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /external/python/cpython2/Lib/
decimal.py 144 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
192 number of zero digits are appended to the coefficient ("fold-down").
254 divide-integer or remainder operation had too many digits (would be
276 not exact (that is, it needed to be rounded and any discarded digits
302 rounded (that is, some zero or non-zero digits were discarded from the
530 # a string rather than as a tuple of digits. This speeds up
531 # the "digits to integer" and "integer to digits" conversions
535 # digits.
622 # process and validate the digits in value[1
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /external/python/cpython2/Lib/idlelib/
AutoComplete.py 14 FILENAME_CHARS = string.ascii_letters + string.digits + os.curdir + "._~#$:-"
16 ID_CHARS = string.ascii_letters + string.digits + "_"
  /external/skia/include/private/
SkTFitsIn.h 28 * u = unsigned, s = signed, X = more digits, x = less digits
60 /** SkTHasMoreDigits = (digits(A) >= digits(B)) ? true_type : false_type. */
62 : skstd::bool_constant<std::numeric_limits<A>::digits >= std::numeric_limits<B>::digits>
122 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check.
135 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check
    [all...]
  /external/skqp/include/private/
SkTFitsIn.h 28 * u = unsigned, s = signed, X = more digits, x = less digits
60 /** SkTHasMoreDigits = (digits(A) >= digits(B)) ? true_type : false_type. */
62 : skstd::bool_constant<std::numeric_limits<A>::digits >= std::numeric_limits<B>::digits>
122 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check.
135 // If std::numeric_limits<D>::digits >= std::numeric_limits<S>::digits, nothing to check
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
193 number of zero digits are appended to the coefficient ("fold-down").
255 divide-integer or remainder operation had too many digits (would be
277 not exact (that is, it needed to be rounded and any discarded digits
303 rounded (that is, some zero or non-zero digits were discarded from the
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
536 # digits.
623 # process and validate the digits in value[1
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
AutoComplete.py 14 FILENAME_CHARS = string.ascii_letters + string.digits + os.curdir + "._~#$:-"
16 ID_CHARS = string.ascii_letters + string.digits + "_"
  /prebuilts/gdb/linux-x86/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
193 number of zero digits are appended to the coefficient ("fold-down").
255 divide-integer or remainder operation had too many digits (would be
277 not exact (that is, it needed to be rounded and any discarded digits
303 rounded (that is, some zero or non-zero digits were discarded from the
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
536 # digits.
623 # process and validate the digits in value[1
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
AutoComplete.py 14 FILENAME_CHARS = string.ascii_letters + string.digits + os.curdir + "._~#$:-"
16 ID_CHARS = string.ascii_letters + string.digits + "_"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
193 number of zero digits are appended to the coefficient ("fold-down").
255 divide-integer or remainder operation had too many digits (would be
277 not exact (that is, it needed to be rounded and any discarded digits
303 rounded (that is, some zero or non-zero digits were discarded from the
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
536 # digits.
623 # process and validate the digits in value[1
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoComplete.py 14 FILENAME_CHARS = string.ascii_letters + string.digits + os.curdir + "._~#$:-"
16 ID_CHARS = string.ascii_letters + string.digits + "_"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
193 number of zero digits are appended to the coefficient ("fold-down").
255 divide-integer or remainder operation had too many digits (would be
277 not exact (that is, it needed to be rounded and any discarded digits
303 rounded (that is, some zero or non-zero digits were discarded from the
531 # a string rather than as a tuple of digits. This speeds up
532 # the "digits to integer" and "integer to digits" conversions
536 # digits.
623 # process and validate the digits in value[1
    [all...]
stringold.py 16 digits -- a string containing all characters considered decimal digits
17 hexdigits -- a string containing all characters considered hexadecimal digits
18 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoComplete.py 14 FILENAME_CHARS = string.ascii_letters + string.digits + os.curdir + "._~#$:-"
16 ID_CHARS = string.ascii_letters + string.digits + "_"
  /system/bt/vendor_libs/test_vendor_lib/scripts/
test_channel.py 53 string.digits) for _ in range(DEVICE_NAME_LENGTH))
56 return ''.join(random.SystemRandom().choice(string.digits) for _ in \
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 548 = {unsigned} digits
549 {->digits.expression}
550 | {positive} plus digits
551 {->digits.expression}
552 | {negative} minus digits
553 {->New expression.negative(digits.expression)}
556 digits {->expression}
  /art/libartbase/base/
bit_utils.h 36 return std::numeric_limits<unsigned_type>::digits;
55 is_64_bit ? 0u : std::numeric_limits<uint32_t>::digits - std::numeric_limits<T>::digits;
110 return (value == 0) ? -1 : std::numeric_limits<T>::digits - 1 - CLZ(value);
131 // NOTE: Undefined if x > (1 << (std::numeric_limits<T>::digits - 1)).
132 return (x < 2u) ? x : static_cast<T>(1u) << (std::numeric_limits<T>::digits - CLZ(x - 1u));
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Currency.java 49 * <li>The number of fraction digits to display
867 CurrencyDigits digits = info.currencyDigits(subType, Usage); local
889 CurrencyDigits digits = info.currencyDigits(subType, Usage); local
    [all...]

Completed in 2312 milliseconds

<<11121314151617181920>>