/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_string.c | 77 value *= radix; in SDL_ScanLong() 113 value *= radix; in SDL_ScanUnsignedLong() 145 value *= radix; in SDL_ScanUintPtrT() 182 value *= radix; in SDL_ScanLongLong() 218 value *= radix; in SDL_ScanUnsignedLongLong() 784 value /= radix; in SDL_ultoa() 828 value /= radix; in SDL_ulltoa() 1104 int radix = 10; in SDL_vsscanf() local 1234 radix = 8; in SDL_vsscanf() 1407 int radix; member [all …]
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | bignum.c | 467 if( radix < 2 || radix > 16 ) in mbedtls_mpi_read_string() 474 if( radix == 16 ) in mbedtls_mpi_read_string() 537 if( radix < 2 || radix > 16 ) in mpi_write_hlp() 570 if( radix < 2 || radix > 16 ) in mbedtls_mpi_write_string() 574 if( radix >= 4 ) n >>= 1; in mbedtls_mpi_write_string() 575 if( radix >= 16 ) n >>= 1; in mbedtls_mpi_write_string() 595 if( radix == 16 ) in mbedtls_mpi_write_string() 653 if( radix < 2 || radix > 16 ) in mbedtls_mpi_read_file() 689 if( radix < 2 || radix > 16 ) in mbedtls_mpi_write_file() 1402 while( q1 >= radix || ( q1 * d0 > radix * r0 + u0_msw ) ) in mbedtls_int_div_int() [all …]
|
A D | ecp.c | 715 int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix, in mbedtls_ecp_point_read_string() argument 723 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->X, radix, x ) ); in mbedtls_ecp_point_read_string() 724 MBEDTLS_MPI_CHK( mbedtls_mpi_read_string( &P->Y, radix, y ) ); in mbedtls_ecp_point_read_string()
|
/AliOS-Things-master/components/mbedtls/include/mbedtls/ |
A D | bignum.h | 407 int mbedtls_mpi_read_string( mbedtls_mpi *X, int radix, const char *s ); 431 int mbedtls_mpi_write_string( const mbedtls_mpi *X, int radix, 456 int mbedtls_mpi_read_file( mbedtls_mpi *X, int radix, FILE *fin ); 474 int radix, FILE *fout );
|
A D | ecp.h | 611 int mbedtls_ecp_point_read_string( mbedtls_ecp_point *P, int radix,
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | libbf.c | 2686 radixl = radix; in get_limb_radix() 2911 (radix == 0 || radix == 16) && in bf_atof_internal() 2918 radix = 8; in bf_atof_internal() 2922 radix = 2; in bf_atof_internal() 2942 if (radix == 0) in bf_atof_internal() 2943 radix = 10; in bf_atof_internal() 2948 } else if ((radix & (radix - 1)) != 0) { in bf_atof_internal() 3331 if ((radix & (radix - 1)) == 0) { in bf_mul_log2_radix() 3574 if (radix == 10) { in limb_to_a() 3632 } else if ((radix & (radix - 1)) == 0) { in output_digits() [all …]
|
A D | libbf.h | 318 int bf_atof(bf_t *a, const char *str, const char **pnext, int radix, 323 const char *str, const char **pnext, int radix, 325 int bf_mul_pow_radix(bf_t *r, const bf_t *T, limb_t radix, 372 char *bf_ftoa(size_t *plen, const bf_t *a, int radix, limb_t prec, 388 slimb_t bf_mul_log2_radix(slimb_t a1, unsigned int radix, int is_inv,
|
A D | repl.js | 907 function number_to_string(a, radix) { argument 919 if (radix == 16 && a === Math.floor(a)) { 936 function bigfloat_to_string(a, radix) { argument 952 if (radix == 16) { 968 ((radix == 16 && s.indexOf("p") < 0) || 969 (radix == 10 && s.indexOf("e") < 0))) { 978 function bigint_to_string(a, radix) { argument 980 if (radix == 16) {
|
A D | quickjs.c | 9939 n_max = ((uint64_t)-1 - (radix - 1)) / radix; in js_strtod() 10094 (radix == 0 || radix == 16)) { in js_atof2() 10168 ((*p == 'p' || *p == 'P') && (radix == 2 || radix == 8 || radix == 16)))) { in js_atof2() 11048 if ((radix & (radix - 1)) != 0) { in js_ftoa() 39094 int radix; in js_get_radix() local 39097 if (radix < 2 || radix > 36) { in js_get_radix() 39101 return radix; in js_get_radix() 39229 if (radix != 0 && (radix < 2 || radix > 36)) { in js_parseInt() 48802 radix = 10; in js_bigfloat_toFixed() 49089 int radix; in js_bigfloat_parseFloat() local [all …]
|
/AliOS-Things-master/components/sensor/include/ |
A D | gps_parse.h | 52 static inline int gps_atoi(const char *str, int size, int radix) in gps_atoi() argument 61 ret = strtol(&buff[0], &str_tmp, radix); in gps_atoi()
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_stdinc.h | 482 extern DECLSPEC char *SDLCALL SDL_itoa(int value, char *str, int radix); 483 extern DECLSPEC char *SDLCALL SDL_uitoa(unsigned int value, char *str, int radix); 484 extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *str, int radix); 485 extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *str, int radix); 486 extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *str, int radix); 487 extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *str, int radix);
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/ |
A D | jsbignum.texi | 216 @item parseFloat(a[, radix[, e]]) 217 Parse the string @code{a} as a floating point number in radix 218 @code{radix}. The radix is 0 (default) or from 2 to 36. The radix 0 219 means radix 10 unless there is a hexadecimal or binary prefix. The 280 @item toString(radix) 286 If the radix is a power of two, the conversion is done with infinite 299 @item toPrecision(p, rnd_mode = BigFloatEnv.RNDNA, radix = 10) 300 @item toFixed(p, rnd_mode = BigFloatEnv.RNDNA, radix = 10) 301 @item toExponential(p, rnd_mode = BigFloatEnv.RNDNA, radix = 10) 304 rounding mode and radix can be optionally specified. The radix must be
|
/AliOS-Things-master/components/amp/jslib/src/ |
A D | repl.js | 915 function number_to_string(a, radix) { argument 927 if (radix == 16 && a === Math.floor(a)) { 944 function bigfloat_to_string(a, radix) { argument 960 if (radix == 16) { 976 ((radix == 16 && s.indexOf("p") < 0) || 977 (radix == 10 && s.indexOf("e") < 0))) { 986 function bigint_to_string(a, radix) { argument 988 if (radix == 16) {
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/ |
A D | quantization_util.h | 133 static_assert(std::numeric_limits<IntOut>::radix == 2, "IntOut is base 2"); in SafeCast()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duktape.c | 41949 duk_int32_t radix; in duk_bi_global_object_parse_int() local 41974 if (radix != 0) { in duk_bi_global_object_parse_int() 41975 if (radix < 2 || radix > 36) { in duk_bi_global_object_parse_int() 41978 if (radix != 16) { in duk_bi_global_object_parse_int() 41982 radix = 10; in duk_bi_global_object_parse_int() 45960 radix = 10; 93236 DUK_ASSERT(radix >= 2 && radix <= 36); 94191 nc_ctx->B = radix; 94329 DUK_ASSERT(radix >= 2 && radix <= 36); 94571 if (dig >= radix) { [all …]
|