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

1 2

  /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...]
  /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/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...]
  /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:__anon870
141 /* Mapping of radix and binary class to length. */
236 radix = radix_decimal
    [all...]
nm.c 94 { "radix", 't', "RADIX", 0, N_("Use RADIX for printing symbol values"), 0 },
206 /* Radix for printed numbers. */
212 } radix; variable in typeref:enum:__anon864
324 radix = radix_decimal;
326 radix = radix_octal;
328 radix = radix_hex;
530 /* Mapping of radix and binary class to length. */
787 int digits = length_map[gelf_getclass (ebl->elf) - 1][radix];
    [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...]
  /external/lldb/source/Core/
DataExtractor.cpp 1490 const unsigned radix = 2; local
1558 const unsigned radix = 10; local
1569 const unsigned radix = 10; local
1580 const unsigned radix = 8; local
    [all...]
  /external/mesa3d/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...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 1595 int radix = table.getLength(); local
1624 int radix = aTable.getLength(); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnumtst.c 2294 int32_t radix; member in struct:__anon16870
2334 int32_t ulen, radix = unumsys_getRadix(unumsys); local
    [all...]

Completed in 363 milliseconds

1 2