/third_party/lz4/tests/ |
D | datagencli.c | 40 #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/ |
D | strtol.c | 96 …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/ |
D | strtol.c | 21 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/ |
D | strtol.c | 21 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/ |
D | strtol.c | 21 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/ |
D | strtol.c | 21 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/ |
D | dwfl-report-elf-align.c | 53 uintptr_t base = strtoull (argv[2], &endptr, 0); in main() 59 uintptr_t funcaddr = strtoull (argv[3], &endptr, 0); in main()
|
D | early-offscn.c | 46 Elf_Scn *scn = gelf_offscn (elf, strtoull (argv[2], NULL, 0)); in main()
|
D | getsrc_die.c | 49 addr = strtoull (argv[i], &endptr, 16); in main()
|
D | dwfl-report-offline-memory.c | 94 strtoull (argv[2], &endptr, 0); in main()
|
/third_party/fsverity-utils/programs/ |
D | cmd_dump_metadata.c | 82 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/ |
D | erst-inject.c | 219 record_id = strtoull(optarg, NULL, 16); in main() 223 record_id = strtoull(optarg, NULL, 16); in main()
|
/third_party/skia/third_party/musl_compat/ |
D | locale.c | 19 return strtoull(nptr, endptr, base); in strtoull_l()
|
/third_party/ltp/testcases/realtime/func/sched_latency/ |
D | sched_latency.c | 105 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/ |
D | gtod_latency.c | 199 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/ |
D | factor.c | 33 l = strtoull(s, &s, 0); in factor()
|
/third_party/musl/src/network/ |
D | lookup_ipliteral.c | 42 if (isdigit(*++p)) scopeid = strtoull(p, &z, 10); in __lookup_ipliteral()
|
/third_party/skia/third_party/externals/expat/expat/xmlwf/ |
D | xmltchar.h | 78 # define tcstoull strtoull
|
/third_party/musl/libc-test/src/math/gen/ |
D | rnd.c | 248 k = strtoull(optarg,&e,0); in main() 264 seed = strtoull(optarg,&e,0); in main()
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfslabel.c | 163 opts.serial = strtoull(optarg, &endserial, 16); in parse_options() 171 opts.serial = strtoull(optarg, &endserial, 16) in parse_options()
|
/third_party/ninja/src/ |
D | util.h | 118 #define strtoull _strtoui64 macro
|
/third_party/mesa3d/src/freedreno/afuc/ |
D | emu-ui.c | 324 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/ |
D | spirv_to_dxil.c | 181 return strtoull(dash + 1, NULL, 16); in spirv_to_dxil_get_version()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | strutil.h | 49 #define strtoull _strtoui64 macro 53 #define strtoull strtoul 382 return strtoull(nptr, endptr, base); in strtou64()
|
/third_party/musl/libc-test/src/api/ |
D | stdlib.c | 62 {unsigned long long(*p)(const char*restrict,char**restrict,int) = strtoull;} in f()
|