HomeSort by relevance Sort by last modified time
    Searched refs:strtoull (Results 76 - 100 of 264) sorted by null

1 2 34 5 6 7 8 91011

  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/support/xlocale/
__strtonum_fallback.h 45 return ::strtoull(nptr, endptr, base);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/support/solaris/
xlocale.h 49 return strtoull(__nptr, __endptr, __base);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/support/xlocale/
__strtonum_fallback.h 45 return ::strtoull(nptr, endptr, base);
  /toolchain/binutils/binutils-2.27/libiberty/
strtoull.c 66 strtoull(const char *nptr, char **endptr, register int base) function
  /external/google-breakpad/src/processor/
basic_source_line_resolver.cc 60 #define strtoull _strtoui64 macro
504 *address = strtoull(tokens[0], &after_number, 16);
509 *size = strtoull(tokens[1], &after_number, 16);
536 *address = strtoull(tokens[0], &after_number, 16);
541 *size = strtoull(tokens[1], &after_number, 16);
585 *address = strtoull(tokens[0], &after_number, 16);
  /bionic/libc/bionic/
strtol.cpp 198 unsigned long long strtoull(const char* s, char** end, int base) { function
208 return strtoull(s, end, base);
  /external/autotest/client/profilers/powertop/src/
cpufreqstats.c 126 f = strtoull(line, &c, 10);
129 count = strtoull(c, NULL, 10);
intelcstates.c 125 bios_table[(strtoull(f, NULL, 16)>>4) + 1]++;
urbnum.c 78 ptr->active = strtoull(name, NULL, 10);
85 ptr->connected = strtoull(name, NULL, 10);
155 update_urbnum(pathname, strtoull(buffer, NULL, 10), dirent->d_name);
  /external/syslinux/memdisk/
Makefile 42 ctypes.o strntoumax.o strtoull.o suffix_number.o \
47 ctypes.c strntoumax.c strtoull.c suffix_number.c
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cstdlib 60 using ::strtoull;
  /system/extras/tests/pagingtest/
pagingtest.c 154 alloc_size = strtoull(argv[2], NULL, 10);
160 file_size = strtoull(argv[3], NULL, 10);
  /external/linux-kselftest/tools/testing/selftests/seccomp/
seccomp_benchmark.c 74 samples = strtoull(argv[1], NULL, 0);
  /external/swiftshader/third_party/LLVM/include/llvm/Config/
config.h 701 /* Define to a function implementing strtoull */
702 #define strtoull _strtoui64 macro
  /external/syslinux/com32/include/
stdlib.h 46 __extern unsigned long long strtoull(const char *, char **, int);
  /system/core/base/include/android-base/
parseint.h 39 unsigned long long int result = strtoull(s, &end, base);
  /system/core/toolbox/
r.c 11 #define strtoptr strtoull
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
PpTokens.cpp 263 ppToken->i64val = (long long)strtoull(ppToken->name, nullptr, 16);
265 ppToken->i64val = (long long)strtoull(ppToken->name, nullptr, 8);
267 ppToken->i64val = (long long)strtoull(ppToken->name, 0, 10);
  /external/e2fsprogs/debugfs/
util.c 316 ret = strtoull(str, &tmp, 0);
528 y = x = strtoull(tok, &e, 0);
532 y = strtoull(e + 1, NULL, 0);
  /device/linaro/bootloader/edk2/StdLib/Include/
stdlib.h 91 unsigned long long strtoull (const char * __restrict nptr,
397 /** The strtol, strtoll, strtoul, and strtoull functions convert the initial
447 @return The strtol, strtoll, strtoul, and strtoull functions return the
492 /** The strtoull function converts the initial portion of the string pointed to
501 @return The strtoull function returns the converted value, if any. If no
507 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base);
    [all...]
  /external/boringssl/src/crypto/evp/
scrypt_test.cc 36 *out = strtoull(str.data(), &endptr, 10);
  /external/flac/include/share/
compat.h 72 #define strtoull _strtoui64 macro
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_vsync.cpp 113 cur_timestamp = strtoull(str + strlen("VSYNC="), NULL, 0);
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
fragments.swg 143 # ifndef strtoull
144 # define strtoull _strtoui64
  /prebuilts/ndk/r16/sources/android/support/src/
wcstox.cpp 118 return wcstox(strtoull, s, p, base);

Completed in 656 milliseconds

1 2 34 5 6 7 8 91011