/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
H A D | strtoumax.c | 24 * @tc.desc : Test the strtoumax function to interpret the string content as a base 10 integer 31 intmax_t result = strtoumax("18737357foobar12", &p, 10); in strtoumax_0100() 33 t_error("%s strtoumax get result is %zu are not 18737357U\n", __func__, result); in strtoumax_0100() 36 t_error("%s strtoumax get is '%s' are not 'foobar12'\n", __func__, p); in strtoumax_0100() 42 * @tc.desc : Test the strtoumax function to interpret the string content as a base 16 integer 49 intmax_t result = strtoumax("18737357foobar12", &p, 16); in strtoumax_0200() 51 t_error("%s strtoumax get result is %zu are not 0x18737357fU\n", __func__, result); in strtoumax_0200() 54 t_error("%s strtoumax get is '%s' are not 'oobar12'\n", __func__, p); in strtoumax_0200() 60 * @tc.desc : Test that strtoumax interprets negative string contents as base 10 integers 67 intmax_t result = strtoumax(" in strtoumax_0300() [all...] |
/third_party/musl/src/stdlib/ |
H A D | strtol.c | 57 uintmax_t strtoumax(const char *restrict s, char **restrict p, int base) in strtoumax_weak() 72 weak_alias(strtoumax_weak, strtoumax); 75 weak_alias(strtoumax, __strtoumax_internal);
|
/third_party/musl/porting/liteos_a/kernel/src/stdlib/ |
H A D | strtol.c | 46 uintmax_t strtoumax(const char *restrict s, char **restrict p, int base) in strtoumax() function 56 weak_alias(strtoumax, __strtoumax_internal);
|
/third_party/musl/porting/linux/user/src/stdlib/ |
H A D | strtol.c | 57 weak_alias(strtoumax_weak, strtoumax); 59 weak_alias(strtoumax, __strtoumax_internal);
|
/third_party/openssl/test/ |
H A D | params_conversion_test.c | 19 # define strtoumax strtoull macro 96 pc->u32 = (uint32_t)strtoumax(pp->value, &p, 10); in param_conversion_load_stanza() 105 pc->u64 = (uint64_t)strtoumax(pp->value, &p, 10); in param_conversion_load_stanza()
|
/third_party/elfutils/tests/ |
H A D | addrscopes.c | 170 uintmax_t addr = strtoumax (buf, &endp, 0); in main() 184 uintmax_t addr = strtoumax (argv[remaining], &endp, 0); in main()
|
H A D | addrcfi.c | 207 uintmax_t addr = strtoumax (buf, &endp, 0); in main() 221 uintmax_t addr = strtoumax (argv[remaining], &endp, 0); in main()
|
H A D | dwfl-addr-sect.c | 70 uintmax_t addr = strtoumax (argv[remaining], &endp, 0); in main()
|
H A D | dwarfcfi.c | 163 uintmax_t addr = strtoumax (argv[args], &endp, 0); in main()
|
/third_party/littlefs/runners/ |
H A D | test_runner.c | 2182 intmax_t start = strtoumax(optarg, &parsed, 0); in main() 2197 stop = strtoumax(optarg, &parsed, 0); in main() 2210 step = strtoumax(optarg, &parsed, 0); in main() 2315 sizes[count] = strtoumax(s, &parsed, 0); in main() 2466 = strtoumax(s, &parsed, 0); in main() 2523 size_t count = strtoumax(optarg, &parsed, 0); in main() 2556 test_step_start = strtoumax(optarg, &parsed, 0); in main() 2571 test_step_stop = strtoumax(optarg, &parsed, 0); in main() 2584 test_step_step = strtoumax(optarg, &parsed, 0); in main() 2617 test_trace_period = strtoumax(optar in main() [all...] |
H A D | bench_runner.c | 1613 intmax_t start = strtoumax(optarg, &parsed, 0); in main() 1628 stop = strtoumax(optarg, &parsed, 0); in main() 1641 step = strtoumax(optarg, &parsed, 0); in main() 1746 sizes[count] = strtoumax(s, &parsed, 0); in main() 1851 bench_step_start = strtoumax(optarg, &parsed, 0); in main() 1866 bench_step_stop = strtoumax(optarg, &parsed, 0); in main() 1879 bench_step_step = strtoumax(optarg, &parsed, 0); in main() 1912 bench_trace_period = strtoumax(optarg, &parsed, 0); in main() 1921 bench_trace_freq = strtoumax(optarg, &parsed, 0); in main()
|
/third_party/FreeBSD/lib/libc/stdlib/ |
H A D | strtoumax.c | 136 strtoumax(const char * __restrict nptr, char ** __restrict endptr, int base) in strtoumax() function
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | inttypes.h | 20 uintmax_t strtoumax(const char *__restrict, char **__restrict, int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | inttypes.h | 20 uintmax_t strtoumax(const char *__restrict, char **__restrict, int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | inttypes.h | 20 uintmax_t strtoumax(const char *__restrict, char **__restrict, int);
|
/third_party/musl/include/ |
H A D | inttypes.h | 20 uintmax_t strtoumax(const char *__restrict, char **__restrict, int);
|
/third_party/alsa-utils/alsamixer/ |
H A D | configparser.c | 177 *number = strtoumax(buf, &endptr, 10); in parse_words() 430 mouse_wheel_step = strtoumax(argv[1], &endptr, 10); in cfg_set()
|
/third_party/musl/libc-test/src/api/ |
H A D | inttypes.c | 256 {uintmax_t(*p)(const char*restrict,char**restrict,int) = strtoumax;} in f()
|
/third_party/ffmpeg/libavformat/ |
H A D | ftp.c | 1009 next->filemode = strtoumax(value, NULL, 8); in ftp_parse_entry_mlsd() 1011 next->user_id = strtoumax(value, NULL, 10); in ftp_parse_entry_mlsd() 1013 next->group_id = strtoumax(value, NULL, 10); in ftp_parse_entry_mlsd()
|
/third_party/elfutils/src/ |
H A D | addr2line.c | 631 uintmax_t addr = strtoumax (string, &endp, 16); in handle_address()
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | opt.c | 604 m = strtoumax(value, &endp, 0); in opt_uintmax()
|
/third_party/openssl/apps/lib/ |
H A D | opt.c | 604 m = strtoumax(value, &endp, 0); in opt_uintmax()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |