HomeSort by relevance Sort by last modified time
    Searched refs:digits (Results 76 - 100 of 446) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
random_number.h 76 _M_rand_sup(1ULL << std::numeric_limits<uint32_t>::digits),
87 _M_rand_sup(1ULL << std::numeric_limits<uint32_t>::digits),
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
random_number.h 76 _M_rand_sup(1ULL << std::numeric_limits<uint32_t>::digits),
87 _M_rand_sup(1ULL << std::numeric_limits<uint32_t>::digits),
  /libcore/luni/src/main/java/java/lang/
Math.java 283 * cancellation of significant digits). The returned result is within 1 ulp
1176 long digits = factor + Double.EXPONENT_BIAS + subNormalFactor; local
1227 int digits = factor + Float.EXPONENT_BIAS + subNormalFactor; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ActionScriptTarget.java 116 private void writeHexWithPadding(StringBuffer buf, String digits) {
117 digits = digits.toUpperCase();
118 int padding = 8 - digits.length();
123 buf.append(digits);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ISO8601Converter.java 55 * <li>hh = two digits of hour (00 through 23)
56 * <li>mm = two digits of minute (00 through 59)
57 * <li>ss = two digits of second (00 through 59)
58 * <li>s = one or more digits representing a decimal fraction of a second
205 int digits = input.pos(); local
212 digits = input.pos() - digits;
213 for (; digits > 9; --digits)
217 for (; digits < 9; ++digits
    [all...]
  /libcore/luni/src/main/native/
java_lang_RealToString.cpp 171 static jfieldID digitsFid = env->GetFieldID(JniConstants::realToStringClass, "digits", "[I");
173 ScopedIntArrayRW digits(env, javaDigits.get());
174 if (digits.get() == NULL) {
216 digits[digitCount++] = U;
222 digits[digitCount++] = U;
224 digits[digitCount++] = U + 1;
226 digits[digitCount++] = U;
228 digits[digitCount++] = U + 1;
  /bionic/libc/upstream-openbsd/lib/libc/net/
inet_pton.c 75 static const char digits[] = "0123456789"; local
85 if ((pch = strchr(digits, ch)) != NULL) {
86 u_int new = *tp * 10 + (pch - digits);
  /external/icu/icu4c/source/samples/numfmt/
util.cpp 33 int8_t digits,
36 while (digits > 0) {
37 digit = (number >> ((--digits) * 4)) & 0xF;
  /external/tcpdump/missing/
inet_ntop.c 66 const char digits[] = "0123456789"; local
81 *dst++ = digits[n / 100];
86 *dst++ = digits[n / 10];
90 *dst++ = digits[n];
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
is_subranged.hpp 52 // numeric_limits<signed T>::digits + 1 == numeric_limits<unsigned T>::digits
54 // The '+1' is required since numeric_limits<>::digits gives 1 bit less for signed integral types.
58 // if ( (numeric_limits<T>::digits+1) < (2*numeric_limits<S>::digits) )
62 typedef mpl::int_< ::std::numeric_limits<S>::digits > S_digits ;
63 typedef mpl::int_< ::std::numeric_limits<T>::digits > T_digits ;
65 // T is signed, so take digits+1
79 // An integral conversion of the same sign is subranged if digits(T) < digits(S)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
RuimRecords.java 198 private int adjstMinDigits (int digits) {
200 digits += 111;
201 digits = (digits % 10 == 0)?(digits - 10):digits;
202 digits = ((digits / 10) % 10 == 0)?(digits - 100):digits;
    [all...]
  /external/icu/icu4c/source/i18n/
tzfmt.cpp 399 UnicodeString digits = ns->getDescription(); local
400 useDefDigits = !toCodePoints(digits, fGMTOffsetDigits, 10);
596 TimeZoneFormat::getGMTOffsetDigits(UnicodeString& digits) const {
597 digits.remove();
599 digits.append(fGMTOffsetDigits[i]);
601 return digits;
605 TimeZoneFormat::setGMTOffsetDigits(const UnicodeString& digits, UErrorCode& status) {
610 if (!toCodePoints(digits, digitArray, 10)) {
    [all...]
collationiterator.cpp 686 // Collect digits.
687 CharString digits; local
691 digits.append(digit, errorCode);
708 digits.append(digit, errorCode);
721 char *p = digits.data();
722 char *q = p + digits.length() - 1;
733 while(pos < (digits.length() - 1) && digits[pos] == 0) { ++pos; }
734 // Write a sequence of CEs for at most 254 digits at a time.
735 int32_t segmentLength = digits.length() - pos
    [all...]
digitlst.h 36 // Decimal digits in a 64-bit int
96 * precision to represent all digits of a long.
99 * which are the digits radix 10, from '0' to '9'. It also has a radix
102 * derived by placing all the digits of the list to the right of the
109 * DigitList stores digits with the most significant first.
110 * decNumber stores digits with the least significant first.
120 * digitList, digits are platform invariant chars, '0' - '9'
121 * decNumber, digits are binary, one per byte, 0 - 9.
123 * (decNumber library is configurable in how digits are stored, ICU has configured
158 * Clears out the digits
310 int32_t digits() const {return fDecNumber->digits;} function in class:DigitList
    [all...]
  /external/bison/lib/
vasnprintf.c 479 /* Allocate room for a_len+2 digits.
480 (Need a_len+1 digits for the real division and 1 more digit for the
842 Return the allocated memory - containing the decimal digits in low-to-high
871 /* Store the remainder as 9 decimal digits. */
1085 char *digits; local
3657 char *digits; local
3712 char *digits; local
3847 char *digits; local
4122 char *digits; local
4174 char *digits; local
4321 char *digits; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
model.js 120 var digits = this.digits_(exponent);
121 var exponential = x.toExponential(digits).replace(/\.?0+e/, 'e');
123 return !digits ? 'E' : fixed ? String(Number(exponential)) : exponential;
127 * Returns the appropriate number of digits to include of a number based on
  /external/chromium_org/third_party/libjingle/source/talk/base/
urlencode.cc 112 static const char *digits = "0123456789ABCDEF"; local
129 *dest++ = digits[(ch >> 4) & 0x0F];
130 *dest++ = digits[ ch & 0x0F];
  /external/chromium_org/third_party/webrtc/base/
urlencode.cc 97 static const char *digits = "0123456789ABCDEF"; local
114 *dest++ = digits[(ch >> 4) & 0x0F];
115 *dest++ = digits[ ch & 0x0F];
  /external/replicaisland/src/com/replica/replicaisland/
HudSystem.java 191 public void setDigitDrawables(DrawableBitmap[] digits, DrawableBitmap xMark) {
193 for (int x = 0; x < mDigitDrawables.length && x < digits.length; x++) {
194 mDigitDrawables[x] = digits[x];
474 private void drawNumber(Vector2 location, int[] digits, boolean drawX) {
500 for (int x = 0; x < digits.length && digits[x] != -1; x++) {
501 int index = digits[x];
515 public int intToDigitArray(int value, int[] digits) {
530 digits[characterCount - 1 - count] = index;
532 } while (remainingValue > 0 && count < digits.length)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
CdmaSmsAddress.java 29 * the address digits are 4-bit DTMF codes or 8-bit codes. (See
69 * This field shall be set to the number of address digits
118 int digits = address.length(); local
119 byte[] result = new byte[digits];
120 for (int i = 0; i < digits; i++) {
  /external/lldb/test/pexpect-2.4/
ANSI.py 207 self.state.add_transition_list (string.digits, 'ELB', StartNumber, 'NUMBER_1')
208 self.state.add_transition_list (string.digits, 'NUMBER_1', BuildNumber, 'NUMBER_1')
225 self.state.add_transition_list (string.digits, 'MODECRAP', StartNumber, 'MODECRAP_NUM')
226 self.state.add_transition_list (string.digits, 'MODECRAP_NUM', BuildNumber, 'MODECRAP_NUM')
233 self.state.add_transition_list (string.digits, 'SEMICOLON', StartNumber, 'NUMBER_2')
234 self.state.add_transition_list (string.digits, 'NUMBER_2', BuildNumber, 'NUMBER_2')
  /external/chromium_org/third_party/icu/source/i18n/
digitlst.h 36 // Decimal digits in a 64-bit int
92 * precision to represent all digits of a long.
95 * which are the digits radix 10, from '0' to '9'. It also has a radix
98 * derived by placing all the digits of the list to the right of the
105 * DigitList stores digits with the most significant first.
106 * decNumber stores digits with the least significant first.
116 * digitList, digits are platform invariant chars, '0' - '9'
117 * decNumber, digits are binary, one per byte, 0 - 9.
119 * (decNumber library is configurable in how digits are stored, ICU has configured
154 * Clears out the digits
296 int32_t digits() const {return fDecNumber->digits;}; function in class:DigitList
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect2.asm 20 mov cx, 4 ; four digits to show
  /external/stlport/stlport/stl/
_limits.h 65 _STLP_STATIC_CONSTANT(int, digits = 0);
124 _STLP_STATIC_CONSTANT(int, digits = (__idigits < 0) ? ((int)((sizeof(_Int) * (CHAR_BIT))) - ((__imin == 0) ? 0 : 1)) : (__idigits));
125 _STLP_STATIC_CONSTANT(int, digits10 = (digits * 301UL) / 1000);
146 _STLP_STATIC_CONSTANT(int, digits = __Digits);
303 _STLP_STATIC_CONSTANT(int, digits = ((int)((sizeof(_STLP_LONG_LONG) * (CHAR_BIT))) - 1));
304 _STLP_STATIC_CONSTANT(int, digits10 = (digits * 301UL) / 1000);
322 _STLP_STATIC_CONSTANT(int, digits = ((int)((sizeof(unsigned _STLP_LONG_LONG) * (CHAR_BIT)))));
323 _STLP_STATIC_CONSTANT(int, digits10 = (digits * 301UL) / 1000);
402 FLT_MANT_DIG, // Binary digits of precision
403 FLT_DIG, // Decimal digits of precisio
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_limits.h 65 _STLP_STATIC_CONSTANT(int, digits = 0);
124 _STLP_STATIC_CONSTANT(int, digits = (__idigits < 0) ? ((int)((sizeof(_Int) * (CHAR_BIT))) - ((__imin == 0) ? 0 : 1)) : (__idigits));
125 _STLP_STATIC_CONSTANT(int, digits10 = (digits * 301UL) / 1000);
146 _STLP_STATIC_CONSTANT(int, digits = __Digits);
303 _STLP_STATIC_CONSTANT(int, digits = ((int)((sizeof(_STLP_LONG_LONG) * (CHAR_BIT))) - 1));
304 _STLP_STATIC_CONSTANT(int, digits10 = (digits * 301UL) / 1000);
322 _STLP_STATIC_CONSTANT(int, digits = ((int)((sizeof(unsigned _STLP_LONG_LONG) * (CHAR_BIT)))));
323 _STLP_STATIC_CONSTANT(int, digits10 = (digits * 301UL) / 1000);
402 FLT_MANT_DIG, // Binary digits of precision
403 FLT_DIG, // Decimal digits of precisio
    [all...]

Completed in 1412 milliseconds

1 2 34 5 6 7 8 91011>>