Home
last modified time | relevance | path

Searched refs:strtoull (Results 1 – 25 of 113) sorted by relevance

12345

/third_party/lz4/tests/
Ddatagencli.c40 #define strtoull _strtoui64 /* https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference… macro
114 size = strtoull(argument, &argument, 10); in main()
126 proba = (double) strtoull(argument, &argument, 10); in main()
131 litProba = (double) strtoull(argument, &argument, 10); in main()
/third_party/musl/libc-test/src/functional/
Dstrtol.c96 …TEST(ull, strtoull(s="18446744073709551616", &c, 0), 18446744073709551615ULL, "uncaught overflow %… in main()
99 TEST(ull, strtoull(s="-1", &c, 0), -1ULL, "rejected negative %llu != %llu"); in main()
102 TEST(ull, strtoull(s="-2", &c, 0), -2ULL, "rejected negative %llu != %llu"); in main()
105 …TEST(ull, strtoull(s="-9223372036854775808", &c, 0), -9223372036854775808ULL, "rejected negative %… in main()
108 …TEST(ull, strtoull(s="-9223372036854775809", &c, 0), -9223372036854775809ULL, "rejected negative %… in main()
111 …TEST(ull, strtoull(s="-18446744073709551616", &c, 0), 18446744073709551615ULL, "uncaught negative … in main()
/third_party/musl/src/stdlib/
Dstrtol.c21 unsigned long long strtoull(const char *restrict s, char **restrict p, int base) in strtoull() function
48 return strtoull(s, p, base); in strtoumax()
54 weak_alias(strtoull, __strtoull_internal);
/third_party/musl/porting/liteos_a/kernel/src/stdlib/
Dstrtol.c21 unsigned long long strtoull(const char *restrict s, char **restrict p, int base) in strtoull() function
48 return strtoull(s, p, base); in strtoumax()
54 weak_alias(strtoull, __strtoull_internal);
/third_party/musl/porting/liteos_m/kernel/src/stdlib/
Dstrtol.c21 unsigned long long strtoull(const char *restrict s, char **restrict p, int base) in strtoull() function
44 weak_alias(strtoull, __strtoull_internal);
/third_party/musl/porting/uniproton/kernel/src/stdlib/
Dstrtol.c21 unsigned long long strtoull(const char *restrict s, char **restrict p, int base) in strtoull() function
44 weak_alias(strtoull, __strtoull_internal);
/third_party/elfutils/tests/
Ddwfl-report-elf-align.c53 uintptr_t base = strtoull (argv[2], &endptr, 0); in main()
59 uintptr_t funcaddr = strtoull (argv[3], &endptr, 0); in main()
Dearly-offscn.c46 Elf_Scn *scn = gelf_offscn (elf, strtoull (argv[2], NULL, 0)); in main()
Dgetsrc_die.c49 addr = strtoull (argv[i], &endptr, 16); in main()
Ddwfl-report-offline-memory.c94 strtoull (argv[2], &endptr, 0); in main()
/third_party/fsverity-utils/programs/
Dcmd_dump_metadata.c82 arg.offset = strtoull(optarg, &tmp, 10); in fsverity_cmd_dump_metadata()
95 arg.length = strtoull(optarg, &tmp, 10); in fsverity_cmd_dump_metadata()
/third_party/ltp/testcases/kernel/mce-test/tsrc/erst-inj/
Derst-inject.c219 record_id = strtoull(optarg, NULL, 16); in main()
223 record_id = strtoull(optarg, NULL, 16); in main()
/third_party/skia/third_party/musl_compat/
Dlocale.c19 return strtoull(nptr, endptr, base); in strtoull_l()
/third_party/ltp/testcases/realtime/func/sched_latency/
Dsched_latency.c105 latency_threshold = strtoull(v, NULL, 0); in parse_args()
108 period = strtoull(v, NULL, 0) * NS_PER_MS; in parse_args()
/third_party/ltp/testcases/realtime/func/gtod_latency/
Dgtod_latency.c199 latency_threshold = strtoull(argv[++i], NULL, 0); in stats_cmdline()
208 iterations = strtoull(argv[++i], NULL, 0); in stats_cmdline()
/third_party/toybox/toys/other/
Dfactor.c33 l = strtoull(s, &s, 0); in factor()
/third_party/musl/src/network/
Dlookup_ipliteral.c42 if (isdigit(*++p)) scopeid = strtoull(p, &z, 10); in __lookup_ipliteral()
/third_party/skia/third_party/externals/expat/expat/xmlwf/
Dxmltchar.h78 # define tcstoull strtoull
/third_party/musl/libc-test/src/math/gen/
Drnd.c248 k = strtoull(optarg,&e,0); in main()
264 seed = strtoull(optarg,&e,0); in main()
/third_party/ntfs-3g/ntfsprogs/
Dntfslabel.c163 opts.serial = strtoull(optarg, &endserial, 16); in parse_options()
171 opts.serial = strtoull(optarg, &endserial, 16) in parse_options()
/third_party/ninja/src/
Dutil.h118 #define strtoull _strtoui64 macro
/third_party/mesa3d/src/freedreno/afuc/
Demu-ui.c324 uintptr_t addr = strtoull(offset, NULL, 0); in emu_write_mem_prompt()
343 uintptr_t addr = strtoull(offset, NULL, 0); in emu_dump_mem_prompt()
/third_party/mesa3d/src/microsoft/spirv_to_dxil/
Dspirv_to_dxil.c181 return strtoull(dash + 1, NULL, 16); in spirv_to_dxil_get_version()
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil.h49 #define strtoull _strtoui64 macro
53 #define strtoull strtoul
382 return strtoull(nptr, endptr, base); in strtou64()
/third_party/musl/libc-test/src/api/
Dstdlib.c62 {unsigned long long(*p)(const char*restrict,char**restrict,int) = strtoull;} in f()

12345