HomeSort by relevance Sort by last modified time
    Searched refs:radix (Results 51 - 75 of 181) sorted by null

1 23 4 5 6 7 8

  /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/icu4c/common/
util.cpp 35 int32_t radix, int32_t minDigits) {
36 if (radix < 2 || radix > 36) {
37 // Bogus radix
48 while (nn >= radix) {
49 nn /= radix;
50 r *= radix;
61 r /= radix;
cstring.h 93 /* Conversion from a digit to the character with radix base from 2-19 */
118 T_CString_integerToString(char *buffer, int32_t n, int32_t radix);
121 T_CString_int64ToString(char *buffer, int64_t n, uint32_t radix);
124 T_CString_stringToInteger(const char *integerString, int32_t radix);
  /external/chromium/base/
rand_util.cc 31 COMPILE_ASSERT(std::numeric_limits<double>::radix == 2, otherwise_use_scalbn);
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 97 * as an unsigned {@code int} value in the specified radix.
102 public static UnsignedInteger valueOf(String string, int radix) {
103 return asUnsigned(UnsignedInts.parseUnsignedInt(string, radix));
229 * Returns a string representation of the {@code UnsignedInteger} value, in base {@code radix}.
230 * If {@code radix < Character.MIN_RADIX} or {@code radix > Character.MAX_RADIX}, the radix
233 public String toString(int radix) {
234 return UnsignedInts.toString(value, radix);
UnsignedLong.java 94 * an unsigned {@code long} value in the specified radix.
97 * value, or {@code radix} is not between {@link Character#MIN_RADIX} and
100 public static UnsignedLong valueOf(String string, int radix) {
101 return asUnsigned(UnsignedLongs.parseUnsignedLong(string, radix));
235 * Returns a string representation of the {@code UnsignedLong} value, in base {@code radix}. If
236 * {@code radix < Character.MIN_RADIX} or {@code radix > Character.MAX_RADIX}, the radix
239 public String toString(int radix) {
240 return UnsignedLongs.toString(value, radix);
    [all...]
  /external/chromium/googleurl/src/
url_canon_internal.h 429 int _itoa_s(int value, char* buffer, size_t size_in_chars, int radix);
430 int _itow_s(int value, char16* buffer, size_t size_in_chars, int radix);
434 inline int _itoa_s(int value, char (&buffer)[N], int radix) {
435 return _itoa_s(value, buffer, N, radix);
439 inline int _itow_s(int value, char16 (&buffer)[N], int radix) {
440 return _itow_s(value, buffer, N, radix);
  /external/icu4c/i18n/
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;
esctrn.cpp 96 this->radix = _radix;
109 radix(o.radix),
149 ICU_Utility::appendNumber(buf, c, supplementalHandler->radix,
161 ICU_Utility::appendNumber(buf, c, radix, minDigits);
nfrule.cpp 33 , radix(0)
132 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
169 // both rules have the same radix and exponent (i.e., the
171 rule2->radix = rule1->radix;
210 * in the description) and sets the rule's base value, radix, and
293 // now parsing the rule's radix. Again, accumulate digits
318 // tempValue now contain's the rule's radix. Set it
320 radix = (int32_t)val;
321 if (radix == 0)
    [all...]
nfrule.h 62 double getDivisor() const { return uprv_pow(radix, exponent); }
96 int32_t radix; member in class:NFRule
nfsubs.h 90 * @param radix The radix of the divisor
93 virtual void setDivisor(int32_t radix, int32_t exponent, UErrorCode& status);
  /libcore/luni/src/main/java/java/math/
BigInteger.java 190 * followed by a non-empty sequence of digits in the specified radix. Digits
191 * are interpreted as if by {@code Character.digit(char, radix)}.
194 * @param radix the base to be used for the conversion.
197 * representation of a {@code BigInteger} or if {@code radix <
198 * Character.MIN_RADIX} or {@code radix > Character.MAX_RADIX}.
200 public BigInteger(String value, int radix) {
204 if (radix == 10) {
208 } else if (radix == 16) {
213 if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX)
    [all...]
  /external/v8/src/
conversions.cc 362 char* DoubleToRadixCString(double value, int radix) {
363 ASSERT(radix >= 2 && radix <= 36);
369 // for max integer value in radix 2. We need room for a sign too.
392 chars[static_cast<int>(fmod(integer_part, radix))];
393 integer_part /= radix;
400 // Convert the decimal part. Repeatedly multiply by the radix to
411 decimal_part *= radix;
  /cts/tools/dasm/src/dasm/
Utils.java 70 private static Number stringToSmallestInteger(String str, int radix)
72 long x = Long.parseLong(str, radix);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_stdinc.h 461 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
467 extern DECLSPEC char * SDLCALL SDL_ltoa(long value, char *string, int radix);
473 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
479 extern DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *string, int radix);
499 extern DECLSPEC char* SDLCALL SDL_lltoa(Sint64 value, char *string, int radix);
505 extern DECLSPEC char* SDLCALL SDL_ulltoa(Uint64 value, char *string, int radix);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 461 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
467 extern DECLSPEC char * SDLCALL SDL_ltoa(long value, char *string, int radix);
473 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
479 extern DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *string, int radix);
499 extern DECLSPEC char* SDLCALL SDL_lltoa(Sint64 value, char *string, int radix);
505 extern DECLSPEC char* SDLCALL SDL_ulltoa(Uint64 value, char *string, int radix);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_stdinc.h 461 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
467 extern DECLSPEC char * SDLCALL SDL_ltoa(long value, char *string, int radix);
473 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
479 extern DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *string, int radix);
499 extern DECLSPEC char* SDLCALL SDL_lltoa(Sint64 value, char *string, int radix);
505 extern DECLSPEC char* SDLCALL SDL_ulltoa(Uint64 value, char *string, int radix);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_stdinc.h 461 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
467 extern DECLSPEC char * SDLCALL SDL_ltoa(long value, char *string, int radix);
473 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
479 extern DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *string, int radix);
499 extern DECLSPEC char* SDLCALL SDL_lltoa(Sint64 value, char *string, int radix);
505 extern DECLSPEC char* SDLCALL SDL_ulltoa(Uint64 value, char *string, int radix);
  /external/regex-re2/re2/
re2.cc 1025 int radix) {
1031 long r = strtol(str, &end, radix);
1042 int radix) {
1054 unsigned long r = strtoul(str, &end, radix);
1065 int radix) {
1067 if (!parse_long_radix(str, n, &r, radix)) return false; // Could not parse
1077 int radix) {
1079 if (!parse_ulong_radix(str, n, &r, radix)) return false; // Could not parse
1089 int radix) {
1091 if (!parse_long_radix(str, n, &r, radix)) return false; // Could not pars
    [all...]
  /external/regex-re2/util/
pcre.cc 761 int radix) {
767 long r = strtol(str, &end, radix);
778 int radix) {
790 unsigned long r = strtoul(str, &end, radix);
801 int radix) {
803 if (!parse_long_radix(str, n, &r, radix)) return false; // Could not parse
813 int radix) {
815 if (!parse_ulong_radix(str, n, &r, radix)) return false; // Could not parse
825 int radix) {
827 if (!parse_long_radix(str, n, &r, radix)) return false; // Could not pars
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 440 int radix;
445 radix = TypedValue.COMPLEX_RADIX_23p0;
449 radix = TypedValue.COMPLEX_RADIX_0p23;
453 radix = TypedValue.COMPLEX_RADIX_8p15;
457 radix = TypedValue.COMPLEX_RADIX_16p7;
461 radix = TypedValue.COMPLEX_RADIX_23p0;
470 (radix<<TypedValue.COMPLEX_RADIX_SHIFT)
  /external/clang/lib/Lex/
LiteralSupport.cpp 477 if (*s == '0') { // parse radix
482 radix = 10;
632 /// radix etc.
640 radix = 16;
692 radix = 2;
706 // For now, the radix is set to 8. If we discover that we have a
707 // floating point constant, the radix will change to 10. Octal floating
709 radix = 8;
721 radix = 10;
736 radix = 10
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 49 inline static unsigned getDigit(char cdigit, uint8_t radix) {
52 if (radix == 16 || radix == 36) {
58 if (r <= radix - 11U)
62 if (r <= radix - 11U)
65 radix = 10;
69 if (r < radix)
116 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix)
119 fromString(numbits, Str, radix);
610 unsigned APInt::getBitsNeeded(StringRef str, uint8_t radix) {
    [all...]
  /external/elfutils/src/
nm.c 94 { "radix", 't', "RADIX", 0, N_("Use RADIX for printing symbol values"), 0 },
189 /* Radix for printed numbers. */
195 } radix; variable in typeref:enum:__anon7999
298 radix = radix_decimal;
300 radix = radix_octal;
302 radix = radix_hex;
504 /* Mapping of radix and binary class to length. */
762 int digits = length_map[gelf_getclass (ebl->elf) - 1][radix];
    [all...]

Completed in 548 milliseconds

1 23 4 5 6 7 8