Searched refs:digits (Results 26 - 50 of 123) sorted by relevance

12345

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DISO8601Converter.java55 * <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();
212 digits = input.pos() - digits;
213 for (; digits > 9; --digits)
217 for (; digits <
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Durlencode.cc112 static const char *digits = "0123456789ABCDEF"; local
129 *dest++ = digits[(ch >> 4) & 0x0F];
130 *dest++ = digits[ ch & 0x0F];
/external/icu4c/samples/numfmt/
H A Dutil.cpp33 int8_t digits,
36 while (digits > 0) {
37 digit = (number >> ((--digits) * 4)) & 0xF;
32 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/chromium/base/
H A Drand_util.cc32 static const int kBits = std::numeric_limits<double>::digits;
/external/tcpdump/missing/
H A Dinet_ntop.c66 const char digits[] = "0123456789"; local
81 *dst++ = digits[n / 100];
86 *dst++ = digits[n / 10];
90 *dst++ = digits[n];
/external/webkit/Source/WebCore/html/parser/
H A DHTMLParserIdioms.cpp210 Vector<UChar, 16> digits;
214 digits.append(*position++);
218 value = sign * charactersToIntStrict(digits.data(), digits.size());
/external/replicaisland/src/com/replica/replicaisland/
H A DHudSystem.java191 public void setDigitDrawables(DrawableBitmap[] digits, DrawableBitmap xMark) { argument
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) { argument
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) { argument
530 digits[characterCount - 1 - count] = index;
532 } while (remainingValue > 0 && count < digits
[all...]
/external/icu4c/i18n/
H A Ddigitlst.h36 // 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...]
H A DdecContext.c34 /* round-for-reround digits */
74 context->digits=9; /* 9 digits */
89 context->digits=7; /* digits */
100 context->digits=16; /* digits */
111 context->digits=34; /* digits */
H A Ddecimfmt.cpp833 // TODO Add debug stuff for significant digits here
966 DigitList digits; local
967 digits.set(number);
968 return _format(digits, appendTo, handler, status);
1012 DigitList digits; local
1013 digits.set(number);
1014 _format(digits, appendTo, handler, status);
1136 // Fixed point format. Round to a set number of fraction digits.
1162 * @param pos the number of integer digits to the right of
1184 * be filled in with the correct digits
1187 subformat(UnicodeString& appendTo, FieldPositionHandler& handler, DigitList& digits, UBool isInteger) const argument
1634 DigitList *digits = new DigitList; local
1691 parseForCurrency(const UnicodeString& text, ParsePosition& parsePosition, DigitList& digits, UBool* status, UChar* currency) const argument
1827 subparse(const UnicodeString& text, const UnicodeString* negPrefix, const UnicodeString* negSuffix, const UnicodeString* posPrefix, const UnicodeString* posSuffix, UBool currencyParsing, int8_t type, ParsePosition& parsePosition, DigitList& digits, UBool* status, UChar* currency) const argument
[all...]
H A Drbt_set.cpp76 int32_t digits,
82 while (digits--) {
83 target += digitString[(number >> (digits*4)) & 0xF];
75 _appendHex(uint32_t number, int32_t digits, UnicodeString& target) argument
/external/stlport/stlport/stl/
H A D_limits.h65 _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 o
[all...]
H A D_limits.c41 __declare_numeric_base_member(int, digits);
70 __declare_integer_limits_member(int, digits);
84 _STLP_TEMPLATE_NULL const int numeric_limits<__integer>::digits; \
116 __declare_float_limits_member(int, digits);
/external/v8/src/
H A Dsafepoint-table.cc111 void SafepointTable::PrintBits(uint8_t byte, int digits) { argument
112 ASSERT(digits >= 0 && digits <= kBitsPerByte);
113 for (int i = 0; i < digits; i++) {
H A Dscanner.cc64 uc32 digits[4] = { 0, 0, 0, 0 }; local
67 digits[i] = c0_;
74 // Push back digits that we have advanced past.
76 PushBack(digits[j]);
766 // Parse decimal digits and allow trailing fractional part.
1017 // only "safe" characters are allowed (letters, digits, underscore),
/external/elfutils/src/
H A Dsize.c412 const int digits = length_map[gelf_getclass (elf) - 1][radix]; local
442 digits - 2, sgettext ("sysv|size"),
443 digits, sgettext ("sysv|addr"));
465 digits - 2, shdr->sh_size,
466 digits, shdr->sh_addr);
474 digits - 2, total);
477 digits - 2, total);
480 digits - 2, total);
H A Dnm.c762 int digits = length_map[gelf_getclass (ebl->elf) - 1][radix]; local
775 digits, sgettext ("sysv|Value"),
777 digits, sgettext ("sysv|Size"),
811 digits, syms[cnt].sym.st_value,
817 digits, syms[cnt].sym.st_size, longest_where, syms[cnt].where,
852 int digits = length_map[gelf_getclass (elf) - 1][radix]; local
892 digits, "",
900 digits, syms[cnt].sym.st_value,
907 digits, (uint64_t) syms[cnt].sym.st_size);
927 int digits local
[all...]
/external/markdown/markdown/extensions/
H A Dheaderid.py71 from string import ascii_lowercase, digits, punctuation namespace
73 ID_CHARS = ascii_lowercase + digits + '-_'
/external/webkit/Source/JavaScriptCore/runtime/
H A DNumberPrototype.cpp194 // demands a minimum of (exponent + 1) digits to represent a number, for example
195 // 1234 (1.234e+3) requires 4 digits. (See ECMA-262 15.7.4.7.10.c)
222 static const char* const digits = "0123456789abcdefghijklmnopqrstuvwxyz"; local
230 return JSValue::encode(globalData->smallStrings.singleCharacterString(globalData, digits[x]));
259 *--p = digits[remainderDigit];
277 *p++ = digits[digit];
/external/chromium/chrome/browser/autofill/
H A Dphone_number.cc17 // The number of digits in a phone number.
20 // The number of digits in an area code.
156 // Treat the last 7 digits as the number.
163 // Treat the next three digits as the city code.
170 // Treat any remaining digits as the country code.
190 string16 digits(number);
191 StripPunctuation(&digits);
192 number_ = digits;
/external/quake/quake/src/QW/client/
H A Dsbar.c323 void Sbar_DrawNum (int x, int y, int num, int digits, int color) argument
331 if (l > digits)
332 ptr += (l-digits);
333 if (l < digits)
334 x += (digits-l)*24;
864 void Sbar_IntermissionNumber (int x, int y, int num, int digits, int color) argument
872 if (l > digits)
873 ptr += (l-digits);
874 if (l < digits)
875 x += (digits
[all...]
/external/quake/quake/src/WinQuake/
H A Dsbar.cpp350 void Sbar_DrawNum (int x, int y, int num, int digits, int color) argument
358 if (l > digits)
359 ptr += (l-digits);
360 if (l < digits)
361 x += (digits-l)*24;
1058 void Sbar_IntermissionNumber (int x, int y, int num, int digits, int color) argument
1066 if (l > digits)
1067 ptr += (l-digits);
1068 if (l < digits)
1069 x += (digits
[all...]
/external/srec/config/en.us/grammars/
H A Drun_compile_grammars.sh19 GMR=digits
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc548 = {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}
/external/chromium/base/json/
H A Djson_reader.cc30 // Read in more digits
47 // A helper method for ParseStringToken. It reads |digits| hex digits from the
48 // token. If the sequence if digits is not valid (contains other characters),
50 bool ReadHexDigits(JSONReader::Token& token, int digits) { argument
51 for (int i = 1; i <= digits; ++i) {
61 token.length += digits;

Completed in 444 milliseconds

12345