Searched refs:strtoull (Results 1 - 25 of 26) sorted by relevance

12

/haiku/src/system/libroot/posix/
H A Dinttypes.c45 return (intmax_t)strtoull(string, _end, base);
/haiku/src/bin/rc/
H A Dlexer.l97 0[xX]{HEX}{1,16} { yylval.i = strtoull(yytext + 2, NULL, 16);
99 0{OCT}{1,24} { yylval.i = strtoull(yytext, NULL, 8);
101 0[bB]{BIN}{1,64} { yylval.i = strtoull(yytext + 2, NULL, 2);
103 {DEC}+ { yylval.i = strtoull(yytext, NULL, 10);
/haiku/src/system/libroot/posix/stdlib/
H A Dstrtoull.c50 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base) function
139 return strtoull(number, _end, base);
/haiku/src/kits/network/libnetservices/
H A DHttpResult.cpp81 /* strtoull() will ignore a prefixed sign, so we verify that there aren't
89 result = strtoull(length, &endptr, 10);
/haiku/src/tools/
H A Dcreate_image.cpp63 imageSize = strtoull(optarg, NULL, 10);
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Ddebug.cpp25 return strtoull(arg, NULL, 0);
/haiku/src/bin/addattr/
H A DaddAttr.cpp67 uint64value = strtoull(value, NULL, 0);
/haiku/src/tools/vmdkimage/
H A Dvmdkimage.cpp189 headerSize = strtoull(optarg, NULL, 10);
199 imageSize = strtoull(optarg, NULL, 10);
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dvcache.cpp434 ino_t vnid = strtoull(argv[i], NULL, 0);
464 ino_t loc = strtoull(argv[i], NULL, 0);
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_common.h108 * strtoull call in the function.
121 size = strtoull(str, &endptr, 0);
/haiku/headers/posix/
H A Dstdlib.h101 extern unsigned long long strtoull(const char *string, char **end, int base);
/haiku/src/apps/diskprobe/
H A DTypeEditors.cpp529 int64 value = strtoull(number, NULL, 0);
547 int64 value = strtoull(number, NULL, 0);
568 uint64 value = strtoull(number, NULL, 0);
583 uint64 value = strtoull(number, NULL, 0);
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstdlib.h205 extern unsigned long long int strtoull (__const char *__restrict __nptr,
367 strtoull (__const char * __restrict __nptr, char **__restrict __endptr,
H A Dstrtol.c52 /* Nonzero if we are defining `strtoul' or `strtoull', operating on
102 # define strtol strtoull
122 /* If QUAD is defined, we are defining `strtoll' or `strtoull',
/haiku/src/add-ons/disk_systems/intel/
H A DExtendedPartitionAddOn.cpp202 ptsOffset = strtoull(buffer, NULL, 10);
/haiku/src/tests/add-ons/kernel/file_systems/random_file_actions/
H A Drandom_file_actions.cpp89 off_t size = strtoull(valueWithUnit, &unit, 10);
/haiku/src/bin/pc/
H A Dpc.c93 * data type, has strtoull(), and a %lld conversion specifier for printf.
103 #define STRTOUL strtoull
/haiku/src/add-ons/kernel/file_cache/
H A Drule_based_prefetcher.cpp324 node = strtoull(end + 1, &end, 0);
H A Dlaunch_speedup.cpp314 ref.node = strtoull(end + 1, &end, 0);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DQuery.cpp821 fValue.Uint64 = strtoull(string, &string, 0);
/haiku/src/system/kernel/debug/
H A Ddebug_parser.cpp260 fCurrentToken.value = strtoull(fCurrentToken.string, NULL, 0);
/haiku/src/bin/network/ftpd/
H A Dftpcmd.y1447 yylval.u.o = strtoull(cp, NULL, 10);
/haiku/headers/private/file_systems/
H A DQueryParser.h603 fValue.Uint64 = strtoull(string, &string, 0);
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dwrite_support.cpp2227 ptsOffset = strtoull(buffer, NULL, 10);
/haiku/src/system/libroot/stubbed/
H A Dlibroot_stubs.c2526 void strtoull() {} function

Completed in 222 milliseconds

12