/external/chromium_org/third_party/icu/source/i18n/unicode/ |
numsys.h | 47 * positional numbering system with a specified radix (typically 10). 95 * Create a numbering system using the specified radix, type, and description. 96 * @param radix The radix (base) for this numbering system. 103 static NumberingSystem* U_EXPORT2 createInstance(int32_t radix, UBool isAlgorithmic, const UnicodeString& description, UErrorCode& status ); 128 * Returns the radix of this numbering system. Simple positional numbering systems 129 * typically have radix 10, but might have a radix of e.g. 16 for hexadecimal. The 130 * radix is less well-defined for non-positional algorithmic systems. 145 * the radix), e.g. "\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D 183 int32_t radix; member in class:NumberingSystem [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
numsys.h | 47 * positional numbering system with a specified radix (typically 10). 95 * Create a numbering system using the specified radix, type, and description. 96 * @param radix The radix (base) for this numbering system. 103 static NumberingSystem* U_EXPORT2 createInstance(int32_t radix, UBool isAlgorithmic, const UnicodeString& description, UErrorCode& status ); 128 * Returns the radix of this numbering system. Simple positional numbering systems 129 * typically have radix 10, but might have a radix of e.g. 16 for hexadecimal. The 130 * radix is less well-defined for non-positional algorithmic systems. 148 * the radix), e.g. "\u3007\u4E00\u4E8C\u4E09\u56DB\u4E94\u516D\u4E03\u516B\u4E5D 186 int32_t radix; member in class:NumberingSystem [all...] |
/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 | 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/icu/icu4c/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 | 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 | 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/icu/icu4c/source/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/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 | 128 // Parsing integers with radix 2, 4, 8, 16, 32. Assumes current != end. 145 const int radix = (1 << radix_log_2); local 149 if (*current >= '0' && *current <= '9' && *current < '0' + radix) { 151 } else if (radix > 10 && *current >= 'a' && *current < 'a' + radix - 10) { 153 } else if (radix > 10 && *current >= 'A' && *current < 'A' + radix - 10) { 164 number = number * radix + digit; 183 if (current == end || !isDigit(*current, radix)) break; 234 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/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 | 429 int radix = 10; local 432 radix = 16; 435 return Integer.parseInt(v, radix);
|
/external/clang/include/clang/Lex/ |
LiteralSupport.h | 41 /// determines the radix of the value and can convert it to a useful value. 50 unsigned radix; member in class:clang::NumericLiteralParser 89 unsigned getRadix() const { return radix; }
|
/external/elfutils/0.153/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:__anon5016 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 | 628 int radix = 10; local 629 normalizedChar = Character.forDigit(Character.digit(nextChar, radix), radix);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/ |
xmlconfig.c | 172 * number may have an optional sign. Radix is specified by base. If 179 GLint radix = base == 0 ? 10 : base; local 185 assert (radix >= 2 && radix <= 36); 195 radix = 16; 198 radix = 8; 204 if (radix <= 10) { 205 if (*string >= '0' && *string < '0' + radix) 210 else if (*string >= 'a' && *string < 'a' + radix - 10) 212 else if (*string >= 'A' && *string < 'A' + radix - 10 [all...] |