/external/dropbear/libtommath/ |
tommath.h | 422 /* reduces a modulo b using the Diminished Radix method */ 519 /* ---> radix conversion <--- */ 532 int mp_read_radix(mp_int *a, const char *str, int radix); 533 int mp_toradix(mp_int *a, char *str, int radix); 534 int mp_toradix_n(mp_int * a, char *str, int radix, int maxlen); 535 int mp_radix_size(mp_int *a, int radix, int *size); 537 int mp_fread(mp_int *a, int radix, FILE *stream); 538 int mp_fwrite(mp_int *a, int radix, FILE *stream);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.2-2.js | 25 parseInt( string, radix ) 37 var TITLE = "parseInt(string, radix)";
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.4.2-1.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
|
/libcore/luni/src/main/java/java/lang/ |
Character.java | 116 * The minimum radix used for conversions between characters and integers. 121 * The maximum radix used for conversions between characters and integers. [all...] |
/libcore/luni/src/main/native/ |
java_lang_Character.cpp | 26 static jint Character_digitImpl(JNIEnv*, jclass, jint codePoint, jint radix) { 27 return u_digit(codePoint, radix);
|
/external/chromium/googleurl/src/ |
url_canon_internal.cc | 388 int _itoa_s(int value, char* buffer, size_t size_in_chars, int radix) { 390 if (radix == 10) 392 else if (radix == 16) 405 int _itow_s(int value, char16* buffer, size_t size_in_chars, int radix) { 406 if (radix != 10)
|
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/llvm/include/llvm/ADT/ |
APInt.h | 165 /// @param radix 2, 8, 10, 16, or 36 167 void fromString(unsigned numBits, StringRef str, uint8_t radix); 169 /// This is used by the toString method to divide by the radix. It simply 253 /// This constructor interprets the string \arg str in the given radix. The 255 /// radix is encountered, or the end of the string. Acceptable radix values 261 /// @param radix the radix to use for the conversion 263 APInt(unsigned numBits, StringRef str, uint8_t radix); [all...] |
/external/stlport/stlport/stl/ |
_limits.h | 67 _STLP_STATIC_CONSTANT(int, radix = 0); 126 _STLP_STATIC_CONSTANT(int, radix = 2); 148 _STLP_STATIC_CONSTANT(int, radix = FLT_RADIX); 305 _STLP_STATIC_CONSTANT(int, radix = 2); 324 _STLP_STATIC_CONSTANT(int, radix = 2);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_limits.h | 67 _STLP_STATIC_CONSTANT(int, radix = 0); 126 _STLP_STATIC_CONSTANT(int, radix = 2); 148 _STLP_STATIC_CONSTANT(int, radix = FLT_RADIX); 305 _STLP_STATIC_CONSTANT(int, radix = 2); 324 _STLP_STATIC_CONSTANT(int, radix = 2);
|
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_limits.h | 67 _STLP_STATIC_CONSTANT(int, radix = 0); 126 _STLP_STATIC_CONSTANT(int, radix = 2); 148 _STLP_STATIC_CONSTANT(int, radix = FLT_RADIX); 305 _STLP_STATIC_CONSTANT(int, radix = 2); 324 _STLP_STATIC_CONSTANT(int, radix = 2);
|
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_limits.h | 67 _STLP_STATIC_CONSTANT(int, radix = 0); 126 _STLP_STATIC_CONSTANT(int, radix = 2); 148 _STLP_STATIC_CONSTANT(int, radix = FLT_RADIX); 305 _STLP_STATIC_CONSTANT(int, radix = 2); 324 _STLP_STATIC_CONSTANT(int, radix = 2);
|
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/ |
_limits.h | 67 _STLP_STATIC_CONSTANT(int, radix = 0); 126 _STLP_STATIC_CONSTANT(int, radix = 2); 148 _STLP_STATIC_CONSTANT(int, radix = FLT_RADIX); 305 _STLP_STATIC_CONSTANT(int, radix = 2); 324 _STLP_STATIC_CONSTANT(int, radix = 2);
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_math.h | 127 /* ---- radix conversions ---- */ 132 @param radix The radix the integer has been represented in (2-64) 135 int (*read_radix)(void *a, const char *str, int radix); 140 @param radix The radix the integer is to be represented in (2-64) 143 int (*write_radix)(void *a, char *str, int radix);
|
/external/icu4c/common/ |
uchar.c | 445 u_digit(UChar32 ch, int8_t radix) { 447 if((uint8_t)(radix-2)<=(36-2)) { 462 value=-1; /* invalid radix */ 464 return (int8_t)((value<radix) ? value : -1); 468 u_forDigit(int32_t digit, int8_t radix) { 469 if((uint8_t)(radix-2)>(36-2) || (uint32_t)digit>=(uint32_t)radix) {
|
/external/icu4c/i18n/ |
nfsubs.h | 90 * @param radix The radix of the divisor 93 virtual void setDivisor(int32_t radix, int32_t exponent, UErrorCode& status);
|
/external/libvpx/examples/includes/geshi/geshi/ |
pic16.php | 73 'NOEXPAND','NOLIST','ORG','PAGE','PAGESEL','PROCESSOR','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...] |
/external/speex/libspeex/ |
kiss_fft.c | 277 /* perform the butterfly for one stage of a mixed radix FFT */ 294 speex_fatal("KissFFT: max radix supported is 17"); 331 const int p=*factors++; /* the radix */ 369 const int p=*factors++; /* the radix */
|
/external/valgrind/main/drd/scripts/ |
run-splash2 | 155 # Radix 0.21 15136 0.14 23336 0.15 39728 12.6 4.10 22.3 2.19 61 2.87 41 2.94 52 4.03 52 4.03 85 6.13 222 56 215 # Radix 216 run_test ${SPLASH2}/codes/kernels/radix/RADIX -n$((2**20)) -r1024
|
/external/astl/include/ |
limits | 79 // The number of radix digits that be represented without change. For 81 // floating-point types, the number of radix digits in the mantissa.
|
/frameworks/av/media/libstagefright/codecs/aacdec/ |
mix_radix_fft.cpp | 32 (1) Increased precision on the radix 2 fft coeff. (from Q10 to Q12) 77 mix_radix_fft() mixes radix-2 and radix-4 FFT. This is needed to be able 216 exp = 8 - pv_normalize(max1); /* use 24 bits for mix radix fft */ 262 * radix 2 Butterfly
|
/external/icu4c/common/unicode/ |
uchar.h | [all...] |
/external/webkit/Source/JavaScriptCore/icu/unicode/ |
uchar.h | [all...] |
/external/webkit/Source/JavaScriptGlue/icu/unicode/ |
uchar.h | [all...] |