HomeSort by relevance Sort by last modified time
    Searched full:radix (Results 76 - 100 of 372) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/smali/util/src/main/java/ds/tree/
RadixTree.java 30 * This interface represent the operation of a radix tree. A radix tree,
37 * radix tree and crit bit tree are only applied to trees storing integers and
99 * Return the size of the Radix tree
  /external/srec/portable/include/
LCHAR.h 150 * @param radix Base of value; must be in the range 2 - 36
153 PORTABLE_API ESR_ReturnCode litostr(int value, LCHAR *string, size_t *len, int radix);
161 * @param radix Base of value; must be in the range 2 - 36
164 PORTABLE_API ESR_ReturnCode lultostr(unsigned long value, LCHAR *string, size_t *len, int radix);
  /external/icu4c/common/
util.h 32 * Append a number to the given UnicodeString in the given radix.
38 * @param radix a radix from 2 to 36 inclusive.
45 int32_t radix = 10,
205 * @param radix the radix in which to parse; must be >= 2 and <=
213 int32_t& pos, int8_t radix);
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;
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/man/man1/
arm-eabi-size.1 138 [\fB\-d\fR|\fB\-o\fR|\fB\-x\fR|\fB\-\-radix=\fR\fInumber\fR]
209 .IP "\fB\-\-radix=\fR\fInumber\fR" 4
210 .IX Item "--radix=number"
213 section is given in decimal (\fB\-d\fR, or \fB\-\-radix=10\fR); octal
214 (\fB\-o\fR, or \fB\-\-radix=8\fR); or hexadecimal (\fB\-x\fR, or
215 \&\fB\-\-radix=16\fR). In \fB\-\-radix=\fR\fInumber\fR, only the three
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/man/man1/
arm-eabi-size.1 138 [\fB\-d\fR|\fB\-o\fR|\fB\-x\fR|\fB\-\-radix=\fR\fInumber\fR]
209 .IP "\fB\-\-radix=\fR\fInumber\fR" 4
210 .IX Item "--radix=number"
213 section is given in decimal (\fB\-d\fR, or \fB\-\-radix=10\fR); octal
214 (\fB\-o\fR, or \fB\-\-radix=8\fR); or hexadecimal (\fB\-x\fR, or
215 \&\fB\-\-radix=16\fR). In \fB\-\-radix=\fR\fInumber\fR, only the three
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/man/man1/
arm-linux-androideabi-size.1 138 [\fB\-d\fR|\fB\-o\fR|\fB\-x\fR|\fB\-\-radix=\fR\fInumber\fR]
208 .IP "\fB\-\-radix=\fR\fInumber\fR" 4
209 .IX Item "--radix=number"
212 section is given in decimal (\fB\-d\fR, or \fB\-\-radix=10\fR); octal
213 (\fB\-o\fR, or \fB\-\-radix=8\fR); or hexadecimal (\fB\-x\fR, or
214 \&\fB\-\-radix=16\fR). In \fB\-\-radix=\fR\fInumber\fR, only the three
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/man/man1/
arm-eabi-size.1 138 [\fB\-d\fR|\fB\-o\fR|\fB\-x\fR|\fB\-\-radix=\fR\fInumber\fR]
208 .IP "\fB\-\-radix=\fR\fInumber\fR" 4
209 .IX Item "--radix=number"
212 section is given in decimal (\fB\-d\fR, or \fB\-\-radix=10\fR); octal
213 (\fB\-o\fR, or \fB\-\-radix=8\fR); or hexadecimal (\fB\-x\fR, or
214 \&\fB\-\-radix=16\fR). In \fB\-\-radix=\fR\fInumber\fR, only the three
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/man/man1/
arm-linux-androideabi-size.1 138 [\fB\-d\fR|\fB\-o\fR|\fB\-x\fR|\fB\-\-radix=\fR\fInumber\fR]
208 .IP "\fB\-\-radix=\fR\fInumber\fR" 4
209 .IX Item "--radix=number"
212 section is given in decimal (\fB\-d\fR, or \fB\-\-radix=10\fR); octal
213 (\fB\-o\fR, or \fB\-\-radix=8\fR); or hexadecimal (\fB\-x\fR, or
214 \&\fB\-\-radix=16\fR). In \fB\-\-radix=\fR\fInumber\fR, only the three
  /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...]
  /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/
v8natives.js 110 function GlobalParseInt(string, radix) {
111 if (IS_UNDEFINED(radix) || radix === 10 || radix === 0) {
125 radix = radix | 0;
129 radix = TO_INT32(radix);
130 if (!(radix == 0 || (2 <= radix && radix <= 36)))
    [all...]
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;
  /external/llvm/include/llvm/ADT/
StringRef.h 29 bool getAsUnsignedInteger(StringRef Str, unsigned Radix,
32 bool getAsSignedInteger(StringRef Str, unsigned Radix, long long &Result);
313 /// radix. If Radix is specified as zero, this does radix autosensing using
322 getAsInteger(unsigned Radix, T &Result) const {
324 if (getAsSignedInteger(*this, Radix, LLVal) ||
333 getAsInteger(unsigned Radix, T &Result) const {
335 if (getAsUnsignedInteger(*this, Radix, ULLVal) ||
343 /// specified radix, or of an autosensed radix if the radix give
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
limits 194 /** The number of @c radix digits that be represented without change: for
196 floating types, the number of @c radix digits in the mantissa. */
213 static const int radix = 0;
215 /** The minimum negative integer such that @c radix raised to the power of
221 /** The maximum positive integer such that @c radix raised to the power of
322 static const int radix = 2;
376 static const int radix = 2;
427 static const int radix = 2;
478 static const int radix = 2;
529 static const int radix = 2
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
limits 198 /** The number of @c radix digits that be represented without change: for
200 floating types, the number of @c radix digits in the mantissa. */
227 static _GLIBCXX_USE_CONSTEXPR int radix = 0;
229 /** The minimum negative integer such that @c radix raised to the power of
237 /** The maximum positive integer such that @c radix raised to the power of
393 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
463 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
531 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
600 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
668 static _GLIBCXX_USE_CONSTEXPR int radix = 2
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
limits 198 /** The number of @c radix digits that be represented without change: for
200 floating types, the number of @c radix digits in the mantissa. */
227 static _GLIBCXX_USE_CONSTEXPR int radix = 0;
229 /** The minimum negative integer such that @c radix raised to the power of
237 /** The maximum positive integer such that @c radix raised to the power of
393 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
463 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
531 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
600 static _GLIBCXX_USE_CONSTEXPR int radix = 2;
668 static _GLIBCXX_USE_CONSTEXPR int radix = 2
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
limits 194 /** The number of @c radix digits that be represented without change: for
196 floating types, the number of @c radix digits in the mantissa. */
213 static const int radix = 0;
215 /** The minimum negative integer such that @c radix raised to the power of
221 /** The maximum positive integer such that @c radix raised to the power of
322 static const int radix = 2;
376 static const int radix = 2;
427 static const int radix = 2;
478 static const int radix = 2;
529 static const int radix = 2
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
limits 194 /** The number of @c radix digits that be represented without change: for
196 floating types, the number of @c radix digits in the mantissa. */
213 static const int radix = 0;
215 /** The minimum negative integer such that @c radix raised to the power of
221 /** The maximum positive integer such that @c radix raised to the power of
322 static const int radix = 2;
376 static const int radix = 2;
427 static const int radix = 2;
478 static const int radix = 2;
529 static const int radix = 2
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/
limits 194 /** The number of @c radix digits that be represented without change: for
196 floating types, the number of @c radix digits in the mantissa. */
213 static const int radix = 0;
215 /** The minimum negative integer such that @c radix raised to the power of
221 /** The maximum positive integer such that @c radix raised to the power of
322 static const int radix = 2;
376 static const int radix = 2;
427 static const int radix = 2;
478 static const int radix = 2;
529 static const int radix = 2
    [all...]
  /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.12/include/
SDL_stdinc.h 439 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
445 extern DECLSPEC char * SDLCALL SDL_ltoa(long value, char *string, int radix);
451 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
457 extern DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *string, int radix);
477 extern DECLSPEC char* SDLCALL SDL_lltoa(Sint64 value, char *string, int radix);
483 extern DECLSPEC char* SDLCALL SDL_ulltoa(Uint64 value, char *string, int radix);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.2-2-n.js 26 If the radix is the number 10 or not supplied, then this number value is
30 If the radix is supplied and is an integer from 2 to 36, but not 10, the
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 439 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
445 extern DECLSPEC char * SDLCALL SDL_ltoa(long value, char *string, int radix);
451 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
457 extern DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *string, int radix);
477 extern DECLSPEC char* SDLCALL SDL_lltoa(Sint64 value, char *string, int radix);
483 extern DECLSPEC char* SDLCALL SDL_ulltoa(Uint64 value, char *string, int radix);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_stdinc.h 439 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
445 extern DECLSPEC char * SDLCALL SDL_ltoa(long value, char *string, int radix);
451 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
457 extern DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *string, int radix);
477 extern DECLSPEC char* SDLCALL SDL_lltoa(Sint64 value, char *string, int radix);
483 extern DECLSPEC char* SDLCALL SDL_ulltoa(Uint64 value, char *string, int radix);

Completed in 1302 milliseconds

1 2 34 5 6 7 8 91011>>