HomeSort by relevance Sort by last modified time
    Searched refs:digit (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGenCXX/
template-dependent-bind-temporary.cpp 16 T digit; local
17 char((digit < 10 ? '0' : 'a') + digit) + result;
  /external/chromium_org/third_party/icu/source/common/
ustrfmt.c 32 int digit; local
37 digit = (int)(i % radix);
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
  /external/icu/icu4c/source/common/
ustrfmt.c 32 int digit; local
37 digit = (int)(i % radix);
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
  /external/ipsec-tools/src/racoon/
prsa_tok.l 49 digit [0-9]
50 octet (([01]?{digit}?{digit})|((2([0-4]{digit}))|(25[0-5])))
82 {digit}+ { prsalval.num = atol(prsatext); return NUMBER; }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 40 int digit = wi >> 16, zeroes = wi & 0xFFFF; local
42 int n = Math.abs(digit);
43 ECPoint[] table = digit < 0 ? preCompNeg : preComp;
78 int digit = wi >> 16, zeroes = wi & 0xFFFF;
80 int n = Math.abs(digit);
81 ECPoint[] table = digit < 0 ? preCompNeg : preComp;
WNafUtil.java 33 int digit = kBit ? -1 : 1; local
34 naf[length++] = (digit << 16) | zeroes;
83 int digit = k.intValue() & mask; local
86 ++digit;
89 carry = (digit & sign) != 0;
92 digit -= pow2;
96 wnaf[length++] = (digit << 16) | zeroes;
227 int digit = k.intValue() & mask; local
230 ++digit;
233 carry = (digit & sign) != 0
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
AndroidInteger.java 64 int digit = Character.digit(string.charAt(offset++), radix); local
65 if (digit == -1) {
71 int next = result * radix - digit;
  /external/chromium_org/third_party/webrtc/base/
urlencode.cc 20 int digit = *pch; local
21 if (digit >= '0' && digit <= '9') {
22 value += digit - '0';
24 else if (digit >= 'A' && digit <= 'F') {
25 value += digit - 'A' + 10;
27 else if (digit >= 'a' && digit <= 'f') {
28 value += digit - 'a' + 10
    [all...]
linuxfdwalk.c 32 int digit = *s++ - '0'; local
33 val = val * 10 + digit;
  /external/libunwind/src/
os-linux.h 114 unsigned long num_digits = 0, digit, val = 0; local
122 digit = *cp;
123 if ((digit - '0') <= 9)
124 digit -= '0';
125 else if ((digit - 'a') < 6)
126 digit -= 'a' - 10;
127 else if ((digit - 'A') < 6)
128 digit -= 'A' - 10;
131 val = (val << 4) | digit;
144 unsigned long num_digits = 0, digit, val = 0 local
    [all...]
  /external/libcxx/test/re/re.traits/
lookup_classname.pass.cpp 34 test("d", std::ctype_base::digit);
35 test("D", std::ctype_base::digit);
36 test("d", std::ctype_base::digit, true);
37 test("D", std::ctype_base::digit, true);
73 test("digit", std::ctype_base::digit);
74 test("Digit", std::ctype_base::digit);
75 test("digit", std::ctype_base::digit, true)
    [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 84 * @param ch A character to convert to an integer digit
90 int digit = Character.digit(ch, 16); local
91 if (digit == -1) {
94 return digit;
  /external/chromium_org/courgette/
streams.cc 57 // For each byte, we mask out the digit and 'or' it into the right place in the
60 // The digit loop is unrolled for performance. It usually exits after the first
65 uint32 digit, result; local
68 digit = *(source++);
69 result = digit & 127;
70 if (digit < 128) {
77 digit = *(source++);
78 result |= (digit & 127) << 7;
79 if (digit < 128) {
86 digit = *(source++)
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_token.l 71 digit [0-9]
86 usec {dot}{digit}{1,6}
91 decstring {digit}+
  /external/libcxx/test/localization/locale.categories/category.ctype/
ctype_base.pass.cpp 29 // static const mask digit = 1 << 6;
32 // static const mask alnum = alpha | digit;
50 assert(std::ctype_base::digit);
60 & std::ctype_base::digit
63 assert(std::ctype_base::alnum == (std::ctype_base::alpha | std::ctype_base::digit));
72 test(std::ctype_base::digit);
  /external/chromium_org/rlz/lib/
string_utils.cc 52 int digit = 0; local
54 if (!GetHexValue(text[idx], &digit)) {
63 number = (number << 4) | digit;
85 string->at(2 * index) = kHex[data[index] >> 4]; // high digit
86 string->at(2 * index + 1) = kHex[data[index] & 0x0F]; // low digit
  /external/chromium_org/third_party/icu/source/tools/genrb/
rbutil.c 72 int digit; local
82 digit = (int)(i % radix);
83 buffer[length++]= digits[digit];
  /external/icu/icu4c/source/tools/genrb/
rbutil.c 72 int digit; local
82 digit = (int)(i % radix);
83 buffer[length++]= digits[digit];
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
NumericSprite.java 37 String digit = sStrike.substring(i, i+1); local
38 mLabelId[i] = mLabelMaker.add(gl, digit, paint);
73 int digit = c - '0'; local
74 mLabelMaker.draw(gl, x, y, mLabelId[digit]);
75 x += mWidth[digit];
  /external/chromium_org/third_party/icu/source/samples/numfmt/
util.cpp 35 uint32_t digit; local
37 digit = (number >> ((--digits) * 4)) & 0xF;
38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
  /external/icu/icu4c/source/samples/numfmt/
util.cpp 35 uint32_t digit; local
37 digit = (number >> ((--digits) * 4)) & 0xF;
38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
  /external/llvm/test/MC/AsmParser/
floating-literals.s 60 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit
64 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit
68 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit
72 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one significand digit
76 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one significand digit
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum-dtoa.cc 169 // If 1 <= (numerator+delta_plus) / denominator < 10 then no leading 0 digit
182 uint16_t digit; local
183 digit = numerator->DivideModuloIntBignum(*denominator);
184 ASSERT(digit <= 9); // digit is a uint16_t and therefore always positive.
185 // digit = numerator / denominator (integer division).
187 buffer[(*length)++] = digit + '0';
220 // If yes, then the next digit would be < 5 and we can round down.
226 // Note that the last digit could not be a '9' as otherwise the whole
251 // Note again that the last digit could not be '9' since this would hav
274 uint16_t digit; local
284 uint16_t digit; local
    [all...]
  /external/chromium_org/v8/src/
bignum-dtoa.cc 147 // If 1 <= (numerator+delta_plus) / denominator < 10 then no leading 0 digit
160 uint16_t digit; local
161 digit = numerator->DivideModuloIntBignum(*denominator);
162 DCHECK(digit <= 9); // digit is a uint16_t and therefore always positive.
163 // digit = numerator / denominator (integer division).
165 buffer[(*length)++] = digit + '0';
198 // If yes, then the next digit would be < 5 and we can round down.
204 // Note that the last digit could not be a '9' as otherwise the whole
229 // Note again that the last digit could not be '9' since this would hav
252 uint16_t digit; local
262 uint16_t digit; local
    [all...]
  /external/llvm/lib/MC/
MCInstPrinter.cpp 59 // For asm-style hex (e.g. 0ffh) the first digit always has to be a number.
64 uint64_t digit = (Value >> 60) & 0xf; local
65 if (digit != 0)
66 return (digit >= 0xa);

Completed in 1094 milliseconds

1 2 3 4 5 6 7 8 910