/bionic/libc/stdlib/ |
strtoull.c | 1 /* $OpenBSD: strtoull.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ 46 strtoull(const char *nptr, char **endptr, int base) function
|
/external/e2fsprogs/lib/e2p/ |
parse_num.c | 19 num = strtoull(arg, &p, 0);
|
/system/extras/tests/bionic/libstdc++/ |
test_cstdlib.cpp | 60 using ::strtoull;
|
/external/iptables/extensions/ |
libip6t_2mark.c | 43 markinfo->mark = strtoull(optarg, &end, 0); 45 markinfo->mask = strtoull(end+1, &end, 0);
|
libipt_2mark.c | 43 markinfo->mark = strtoull(optarg, &end, 0); 45 markinfo->mask = strtoull(end+1, &end, 0);
|
libipt_quota.c | 48 *quota = strtoull(s, (char **) NULL, 10);
|
/bionic/libstdc++/include/ |
cstdlib | 57 using ::strtoull;
|
/ndk/build/platforms/android-5/arch-x86/usr/include/ |
cstdlib | 57 using ::strtoull;
|
stdlib.h | 67 extern unsigned long long strtoull(const char *, char **, int);
|
/ndk/build/platforms/android-8/arch-x86/usr/include/ |
cstdlib | 57 using ::strtoull;
|
stdlib.h | 67 extern unsigned long long strtoull(const char *, char **, int);
|
/bionic/libc/include/ |
stdlib.h | 67 extern unsigned long long strtoull(const char *, char **, int);
|
/ndk/build/platforms/android-3/arch-arm/usr/include/ |
stdlib.h | 67 extern unsigned long long strtoull(const char *, char **, int);
|
/ndk/build/platforms/android-4/arch-arm/usr/include/ |
stdlib.h | 67 extern unsigned long long strtoull(const char *, char **, int);
|
/ndk/build/platforms/android-5/arch-arm/usr/include/ |
stdlib.h | 67 extern unsigned long long strtoull(const char *, char **, int);
|
/ndk/build/platforms/android-8/arch-arm/usr/include/ |
stdlib.h | 67 extern unsigned long long strtoull(const char *, char **, int);
|
/system/core/toolbox/ |
ioctl.c | 87 uint64_t tmp = strtoull(argv[optind], NULL, 0);
|
/external/qemu/ |
gdbstub.c | [all...] |
/frameworks/base/libs/utils/ |
CallStack.cpp | 147 mi->start = strtoull(line, 0, 16); 148 mi->end = strtoull(line + 9, 0, 16);
|
/sdk/emulator/qtools/ |
read_trace.cpp | 35 startTime = strtoull(optarg, NULL, 0);
|
stack_dump.cpp | 91 dumpTime = strtoull(optarg, NULL, 0);
|
/external/e2fsprogs/lib/blkid/ |
read.c | 30 #define STRTOULL strtoull /* defined in stdlib.h if you try hard enough */ 32 /* FIXME: need to support real strtoull here */ 33 #define STRTOULL strtoul 318 dev->bid_devno = STRTOULL(value, 0, 0);
|
/external/bluetooth/bluez/common/ |
sdp-xml.c | 582 int64_t val = strtoull(data, &endptr, 0); 594 uint64_t val = strtoull(data, &endptr, 0);
|
/bootable/diskinstaller/ |
installer.c | 213 offset = strtoull(tmp, NULL, 0);
|
/bootable/diskinstaller/libdiskconfig/ |
diskconfig.c | 65 *plen = strtoull(tmp, NULL, 0);
|