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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
template-dependent-bind-temporary.cpp 16 T digit; local
17 char((digit < 10 ? '0' : 'a') + digit) + result;
  /external/icu/icu4c/source/common/
ustrfmt.c 34 int digit; local
39 digit = (int)(i % radix);
40 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
  /device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/
inet_addr.c 134 int digit; local
145 val = 0; base = 10; digit = 0;
152 digit = 1 ;
161 digit = 1;
167 digit = 1;
191 * Did we get a valid digit?
193 if (!digit)
inet_network.c 72 int digit, base; local
77 val = 0; base = 10; digit = 0;
79 digit = 1, base = 8, cp++;
88 digit = 1;
94 digit = 1;
99 if (!digit)
  /external/webrtc/webrtc/base/
linuxfdwalk.c 32 int digit = *s++ - '0'; local
33 val = val * 10 + digit;
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...]
  /packages/apps/Messaging/src/com/android/messaging/util/
TextUtil.java 40 * (e.g. Arabic, Persian) digits with their decimal digit equivalents.
48 int digit = Character.digit(c, 10); local
49 if (digit != -1) {
50 normalizedDigits.append(digit);
  /external/icu/icu4c/source/tools/genrb/
rbutil.c 74 int digit; local
84 digit = (int)(i % radix);
85 buffer[length++]= digits[digit];
  /external/linux-kselftest/tools/testing/selftests/size/
get_size.c 36 unsigned int digit; local
42 digit = num % 10;
43 *(--buf) = digit + '0';
  /external/llvm/lib/MC/
MCInstPrinter.cpp 68 // For asm-style hex (e.g. 0ffh) the first digit always has to be a number.
73 uint64_t digit = (Value >> 60) & 0xf; local
74 if (digit != 0)
75 return (digit >= 0xa);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
ctype_base.h 52 static const mask digit = _ISdigit; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
ctype_base.h 52 static const mask digit = _ISdigit; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
ctype_base.h 52 static const mask digit = _ISdigit; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
ctype_base.h 52 static const mask digit = _ISdigit; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 53 static const mask digit = 1 << 3; member in struct:ctype_base
60 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 53 static const mask digit = 1 << 3; member in struct:ctype_base
60 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
longintrepr.h 12 integer type, and one set for 15-bit digits with each digit stored in an
14 configure time or in pyport.h, is used to decide which digit size to use.
16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
45 typedef PY_UINT32_T digit; typedef
46 typedef PY_INT32_T sdigit; /* signed variant of digit */
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
51 #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
53 typedef unsigned short digit; typedef
54 typedef short sdigit; /* signed variant of digit */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
longintrepr.h 12 integer type, and one set for 15-bit digits with each digit stored in an
14 configure time or in pyport.h, is used to decide which digit size to use.
16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
45 typedef PY_UINT32_T digit; typedef
46 typedef PY_INT32_T sdigit; /* signed variant of digit */
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
51 #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
53 typedef unsigned short digit; typedef
54 typedef short sdigit; /* signed variant of digit */
    [all...]
  /external/avb/libavb/
avb_property_descriptor.c 160 int digit; local
165 digit = c - '0';
167 digit = c - 'a' + 10;
169 digit = c - 'A' + 10;
171 avb_error("Invalid digit.\n");
175 parsed_val += digit;
  /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;
73 int digit = wi >> 16, zeroes = wi & 0xFFFF;
75 int n = Math.abs(digit);
76 ECPoint[] table = digit < 0 ? preCompNeg : preComp;
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlEntities.java 114 char digit = html.charAt(i); local
115 switch (digit & 0xfff8) {
117 int decDig = digit & 0xf;
127 int hexDig = (digit & 0x7);
148 char digit = html.charAt(i); local
149 switch (digit & 0xfff8) {
151 int decDig = digit - '0';
  /external/toybox/toys/other/
taskset.c 79 unsigned long digit = *(--s) - '0'; local
81 if (digit > 9) digit = 10 + tolower(*s)-'a';
82 if (digit > 15) error_exit("bad mask '%s'", *toys.optargs);
83 mask[j/(2*sizeof(long))] |= digit << 4*(j&((2*sizeof(long))-1));
  /external/vboot_reference/futility/
cmd_pcr.c 45 int digit; local
47 for (digit = 0; digit < 2; digit++) {
58 if (!digit)
  /packages/apps/Contacts/src/com/android/contacts/util/
PhoneNumberHelper.java 62 // Character.digit() supports ASCII and Unicode digits (fullwidth, Arabic-Indic, etc.)
63 int digit = Character.digit(c, 10); local
64 if (digit != -1) {
65 sb.append(digit);
  /prebuilts/gdb/darwin-x86/include/python2.7/
longintrepr.h 12 integer type, and one set for 15-bit digits with each digit stored in an
14 configure time or in pyport.h, is used to decide which digit size to use.
16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
45 typedef PY_UINT32_T digit; typedef
46 typedef PY_INT32_T sdigit; /* signed variant of digit */
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
51 #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
53 typedef unsigned short digit; typedef
54 typedef short sdigit; /* signed variant of digit */
    [all...]

Completed in 1093 milliseconds

1 2 3 4 5 6 7 8 91011>>