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

1 2 3 4

  /external/chromium_org/third_party/icu/source/i18n/unicode/
numsys.h 93 * Create a numbering system using the specified radix, type, and description.
94 * @param radix The radix (base) for this numbering system.
101 static NumberingSystem* U_EXPORT2 createInstance(int32_t radix, UBool isAlgorithmic, const UnicodeString& description, UErrorCode& status );
120 * Returns the radix of this numbering system.
169 int32_t radix; member in class:NumberingSystem
173 void setRadix(int32_t radix);
  /external/icu4c/i18n/unicode/
numsys.h 96 * Create a numbering system using the specified radix, type, and description.
97 * @param radix The radix (base) for this numbering system.
104 static NumberingSystem* U_EXPORT2 createInstance(int32_t radix, UBool isAlgorithmic, const UnicodeString& description, UErrorCode& status );
123 * Returns the radix of this numbering system.
172 int32_t radix; member in class:NumberingSystem
176 void setRadix(int32_t radix);
  /external/chromium_org/third_party/icu/source/i18n/
esctrn.h 25 * empty, a radix, typically 16 or 10, a minimum digit count,
59 * The radix to display the number in. Typically 16 or 10. Must
62 int32_t radix; member in class:EscapeTransliterator
80 * prefix, suffix, radix, and minDigits of this object are used
99 int32_t radix, int32_t minDigits,
nfrule.h 62 double getDivisor() const { return uprv_pow(radix, exponent); }
96 int32_t radix; member in class:NFRule
numsys.cpp 39 static const char gRadix[] = "radix";
53 radix = 10;
150 int32_t radix = 10; local
160 radix = ures_getInt(nsCurrent,&status);
178 NumberingSystem* ns = NumberingSystem::createInstance(radix,isAlgorithmic,nsd,status);
191 return radix;
203 radix = r;
unesctrn.cpp 186 int8_t radix = (int8_t) spec[ipat++]; local
228 int32_t digit = u_digit(ch, radix);
233 u = (u * radix) + digit;
  /external/icu4c/i18n/
esctrn.h 25 * empty, a radix, typically 16 or 10, a minimum digit count,
59 * The radix to display the number in. Typically 16 or 10. Must
62 int32_t radix; member in class:EscapeTransliterator
80 * prefix, suffix, radix, and minDigits of this object are used
99 int32_t radix, int32_t minDigits,
nfrule.h 62 double getDivisor() const { return uprv_pow(radix, exponent); }
96 int32_t radix; member in class:NFRule
numsys.cpp 43 static const char gRadix[] = "radix";
58 radix = 10;
174 int32_t radix = 10; local
183 radix = ures_getInt(nsCurrent,&status);
199 NumberingSystem* ns = NumberingSystem::createInstance(radix,isAlgorithmic,nsd,status);
212 return radix;
224 radix = r;
unesctrn.cpp 187 int8_t radix = (int8_t) spec[ipat++]; local
229 int32_t digit = u_digit(ch, radix);
234 u = (u * radix) + digit;
  /external/chromium_org/third_party/icu/source/common/
util_props.cpp 28 int8_t radix = 10; local
33 radix = 16;
38 radix = 8;
43 int32_t d = u_digit(rule.charAt(p++), radix);
49 int32_t v = (value * radix) + d;
178 * @param radix the radix in which to parse; must be >= 2 and <=
186 int32_t& pos, int8_t radix) {
188 // assert(radix >= 2);
189 // assert(radix <= 36)
    [all...]
  /external/icu4c/common/
util_props.cpp 30 int8_t radix = 10; local
35 radix = 16;
40 radix = 8;
45 int32_t d = u_digit(rule.charAt(p++), radix);
51 int32_t v = (value * radix) + d;
178 * @param radix the radix in which to parse; must be >= 2 and <=
186 int32_t& pos, int8_t radix) {
188 // assert(radix >= 2);
189 // assert(radix <= 36)
    [all...]
  /external/v8/src/
conversions-inl.h 133 // Parsing integers with radix 2, 4, 8, 16, 32. Assumes current != end.
150 const int radix = (1 << radix_log_2); local
154 if (*current >= '0' && *current <= '9' && *current < '0' + radix) {
156 } else if (radix > 10 && *current >= 'a' && *current < 'a' + radix - 10) {
158 } else if (radix > 10 && *current >= 'A' && *current < 'A' + radix - 10) {
169 number = number * radix + digit;
188 if (current == end || !isDigit(*current, radix)) break;
241 int radix) {
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasmlib.c 23 long radix; local
53 radix = 16, r += 2;
55 radix = 16, r++;
57 radix = 16 , q--;
59 radix = 8 , q--;
61 radix = 2 , q--;
63 radix = 10;
76 /* Check for valid number of that radix */
79 if (*p<'0' || (*p>'9' && *p<'A') || (digit = numvalue(*p)) >= radix)
90 switch (radix) {
    [all...]
  /external/chromium_org/v8/src/
conversions-inl.h 138 // Parsing integers with radix 2, 4, 8, 16, 32. Assumes current != end.
155 const int radix = (1 << radix_log_2); local
159 if (*current >= '0' && *current <= '9' && *current < '0' + radix) {
161 } else if (radix > 10 && *current >= 'a' && *current < 'a' + radix - 10) {
163 } else if (radix > 10 && *current >= 'A' && *current < 'A' + radix - 10) {
174 number = number * radix + digit;
193 if (current == end || !isDigit(*current, radix)) break;
244 int radix) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerToStringTest.java 29 * Method: toString(int radix)
33 * If 36 < radix < 2 it should be set to 10
37 int radix = 10; local
38 BigInteger aNumber = new BigInteger(value, radix);
44 * test negative number of radix 2
48 int radix = 2; local
49 BigInteger aNumber = new BigInteger(value, radix);
50 String result = aNumber.toString(radix);
55 * test positive number of radix 2
59 int radix = 2 local
70 int radix = 16; local
81 int radix = 16; local
92 int radix = 16; local
103 int radix = 16; local
114 int radix = 24; local
125 int radix = 24; local
136 int radix = 36; local
147 int radix = 36; local
    [all...]
BigIntegerConstructorsTest.java 30 * BigInteger(String val, int radix)
571 * Create a number from a string value and radix.
572 * Verify an exception thrown if a radix is out of range
576 int radix = 45; local
578 new BigInteger(value, radix);
585 * Create a number from a string value and radix.
590 int radix = 10; local
592 new BigInteger(value, radix);
599 * Create a number from a string value and radix.
604 int radix = 34 local
618 int radix = 20; local
631 int radix = 2; local
647 int radix = 8; local
663 int radix = 10; local
679 int radix = 16; local
695 int radix = 36; local
711 int radix = 36; local
727 int radix = 10; local
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
Companion.h 24 T radix(){ return 2; } function in namespace:Eigen::internal
27 T radix2(){ return radix<T>()*radix<T>(); }
148 //To find the balancing coefficients, if the radix is 2,
153 rowB = rowNorm / radix<Scalar>();
159 colB *= radix<Scalar>();
163 rowB = rowNorm * radix<Scalar>();
167 colB /= radix<Scalar>();
  /external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 53 int radix = 10; local
65 radix = 16;
68 radix = 8;
75 byte maxValue = (byte)(Byte.MAX_VALUE / (radix / 2));
78 digit = Character.digit(byteChars[position], radix);
82 shiftedResult = (byte)(result * radix);
123 int radix = 10; local
135 radix = 16;
138 radix = 8;
145 short maxValue = (short)(Short.MAX_VALUE / (radix / 2))
187 int radix = 10; local
257 int radix = 10; local
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 38 /// determines the radix of the value and can convert it to a useful value.
47 unsigned radix; member in class:clang::NumericLiteralParser
84 unsigned getRadix() const { return radix; }
  /external/opencv/cxcore/src/
cxdxt.cpp 223 int digits[34], radix[34]; local
258 // radix[] is initialized from index 'nf' down to zero
260 radix[nf] = 1;
265 radix[nf-i-1] = radix[nf-i]*factors[nf-i-1];
273 int a = radix[1], na2 = n*a>>1, na4 = na2 >> 1;
311 for( i = n, j = radix[2]; i < n0; )
317 j += radix[2];
321 j += radix[k+2] - radix[k]
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeResources.java 423 int radix = 10; local
426 radix = 16;
429 return Integer.parseInt(v, radix);
  /external/elfutils/src/
size.c 72 { "radix", OPT_RADIX, "RADIX", 0, N_("Use RADIX for printing symbol values"),
74 { NULL, 'd', NULL, 0, N_("Same as `--radix=10'"), 0 },
75 { NULL, 'o', NULL, 0, N_("Same as `--radix=8'"), 0 },
76 { NULL, 'x', NULL, 0, N_("Same as `--radix=16'"), 0 },
132 /* Radix for printed numbers. */
138 } radix; variable in typeref:enum:__anon20021
141 /* Mapping of radix and binary class to length. */
236 radix = radix_decimal
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_string.c 33 static size_t SDL_ScanLong(const char *text, int radix, long *valuep)
43 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) {
50 } else if ( radix == 16 && SDL_isupperhex(*text) ) {
52 } else if ( radix == 16 && SDL_islowerhex(*text) ) {
57 value *= radix;
73 static size_t SDL_ScanUnsignedLong(const char *text, int radix, unsigned long *valuep)
78 if ( radix == 16 && SDL_strncmp(text, "0x", 2) == 0 ) {
85 } else if ( radix == 16 && SDL_isupperhex(*text) ) {
87 } else if ( radix == 16 && SDL_islowerhex(*text) ) {
92 value *= radix;
749 int radix = 10; local
1127 int radix = 10; local
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java 609 int radix = 10; local
610 normalizedChar = Character.forDigit(Character.digit(nextChar, radix), radix);

Completed in 971 milliseconds

1 2 3 4