HomeSort by relevance Sort by last modified time
    Searched refs:strtoull (Results 1 - 25 of 314) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/lib/
strtoull.c 2 #define NAME strtoull
suffix_number.c 45 v = strtoull(str, &ep, 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
stdlib.h 40 using std::tr1::strtoull;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
stdlib.h 40 using std::tr1::strtoull;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
stdlib.h 40 using std::tr1::strtoull;
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
stdlib.h 40 using std::tr1::strtoull;
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
stdlib.h 40 using std::tr1::strtoull;
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
stdlib.h 40 using std::tr1::strtoull;
  /external/vboot_reference/cgpt/
cmd_create.c 41 params.drive_size = strtoull(optarg, &e, 0);
52 params.padding = strtoull(optarg, &e, 0);
cmd_add.c 53 params.drive_size = strtoull(optarg, &e, 0);
70 params.begin = strtoull(optarg, &e, 0);
79 params.size = strtoull(optarg, &e, 0);
146 params.raw_value = strtoull(optarg, &e, 0);
cmd_boot.c 45 params.drive_size = strtoull(optarg, &e, 0);
cmd_legacy.c 39 params.drive_size = strtoull(optarg, &e, 0);
cmd_repair.c 39 params.drive_size = strtoull(optarg, &e, 0);
cmd_find.c 82 params.drive_size = strtoull(optarg, &e, 0);
132 params.matchoffset = strtoull(optarg, &e, 0);
  /external/elfutils/tests/
early-offscn.c 46 Elf_Scn *scn = gelf_offscn (elf, strtoull (argv[2], NULL, 0));
dwfl-report-elf-align.c 53 uintptr_t base = strtoull (argv[2], &endptr, 0);
59 uintptr_t funcaddr = strtoull (argv[3], &endptr, 0);
  /external/libcxx/include/support/musl/
xlocale.h 35 return strtoull(nptr, endptr, base);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/musl/
xlocale.h 35 return strtoull(nptr, endptr, base);
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
strtoull.c 1 /* $OpenBSD: strtoull.c,v 1.7 2014/09/13 20:10:12 schwarze Exp $ */
45 strtoull(const char *nptr, char **endptr, int base) function
113 __strong_alias(strtouq, strtoull);
  /external/google-breakpad/src/processor/
windows_frame_info.h 55 #define strtoull _strtoui64 macro
133 rva = strtoull(tokens[1], NULL, 16);
134 code_size = strtoull(tokens[2], NULL, 16);
  /external/e2fsprogs/lib/e2p/
parse_num.c 22 num = strtoull(arg, &p, 0);
  /external/toybox/toys/other/
factor.c 32 l = strtoull(s, &s, 0);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/xlocale/
__strtonum_fallback.h 34 return ::strtoull(nptr, endptr, base);
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 8 // RUN: -fno-builtin-strtoull -o - %s | FileCheck %s
36 unsigned long long int strtoull(const char *nptr, char **endptr, int base);
130 long int t24(char **x) { return strtoull("1234", x, 10); }
132 // CHECK: strtoull
  /external/autotest/client/profilers/powertop/src/
powertop.c 217 nr = strtoull(line, NULL, 10);
225 count += strtoull(c, &newc, 10);
299 usage[clevel] += 1+strtoull(c, NULL, 10);
304 duration[clevel] += strtoull(c, NULL, 10);
369 clevel = (strtoull(f, NULL, 16)>>4) + 1;
397 usage[clevel] += 1+strtoull(line, NULL, 10);
410 duration[clevel] += 1+strtoull(line, NULL, 10);
530 voltage = strtoull(c, NULL, 10) / 1000.0;
533 watts_left = strtoull(c, NULL, 10) / 1000.0;
536 amperes_left = strtoull(c, NULL, 10) / 1000.0;
    [all...]

Completed in 986 milliseconds

1 2 3 4 5 6 7 8 91011>>