HomeSort by relevance Sort by last modified time
    Searched refs:strtoull (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /external/iptables/iptables/
xtables-eb.c 552 cs->counters.pcnt = strtoull(argv[optind] + 1, &buffer, 10);
559 cs->counters.pcnt = strtoull(argv[optind] + 1, &buffer, 10);
561 cs->counters.pcnt = strtoull(argv[optind], &buffer, 10);
570 cs->counters.bcnt = strtoull(argv[optind] + 1, &buffer, 10);
575 cs->counters.bcnt = strtoull(argv[optind] + 1, &buffer, 10);
577 cs->counters.bcnt = strtoull(argv[optind], &buffer, 10);
    [all...]
  /external/ltp/testcases/realtime/func/gtod_latency/
gtod_latency.c 199 latency_threshold = strtoull(argv[++i], NULL, 0);
208 iterations = strtoull(argv[++i], NULL, 0);
  /external/ltp/testcases/realtime/func/sched_latency/
sched_latency.c 105 latency_threshold = strtoull(v, NULL, 0);
108 period = strtoull(v, NULL, 0) * NS_PER_MS;
  /external/honggfuzz/
cmdline.c 576 hfuzz->exe.asLimit = strtoull(optarg, NULL, 0);
579 hfuzz->exe.rssLimit = strtoull(optarg, NULL, 0);
582 hfuzz->exe.dataLimit = strtoull(optarg, NULL, 0);
585 hfuzz->exe.coreLimit = strtoull(optarg, NULL, 0);
631 hfuzz->linux.dynamicCutOffAddr = strtoull(optarg, NULL, 0);
  /bionic/tests/headers/posix/
stdlib_h.c 135 FUNCTION(strtoull, unsigned long long (*f)(const char*, char**, int));
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdlib.h 137 strtoull(const char *__restrict, char **__restrict, int);
  /external/autotest/client/profilers/powertop/src/
misctips.c 294 i = strtoull(buffer, NULL, 10);
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
process_memory_stats.cc 35 *res = strtoull(line + metric_size, nullptr, 10);
procfs_utils.cc 131 (*mem_info)[name] = strtoull(&pos_colon[1], nullptr, 10);
  /external/libcxx/test/std/depr/depr.c.headers/
stdlib_h.pass.cpp 85 static_assert((std::is_same<decltype(strtoull("", endptr,0)), unsigned long long>::value), "");
  /external/ltp/tools/apicmds/
ltpapicmd.c 236 unsigned int required_kib = strtoull(argv[1], &endptr, 0);
  /external/openssh/openbsd-compat/
openbsd-compat.h 221 unsigned long long strtoull(const char *, char **, int);
  /external/parameter-framework/upstream/parameter/
BitParameterType.cpp 126 uint64_t uiConvertedValue = strtoull(strValue.c_str(), nullptr, 0);
  /external/swiftshader/third_party/LLVM/include/llvm/Config/
config.h.cmake 701 /* Define to a function implementing strtoull */
702 #cmakedefine strtoull ${strtoull}
  /external/u-boot/tools/
relocate-rela.c 58 *num = strtoull(str, &endptr, 16);
mkimage.c 149 params.addr = strtoull(optarg, &ptr, 16);
189 params.ep = strtoull(optarg, &ptr, 16);
238 params.external_offset = strtoull(optarg, &ptr, 16);
  /external/capstone/cstool/
cstool.c 153 address = strtoull(argv[4], &temp, 16);
175 address = strtoull(argv[3], &temp, 16);
  /external/dtc/
dtc-lexer.l 168 yylval.integer = strtoull(yytext, &e, 0);
179 /* ERANGE is the only strtoull error triggerable
  /external/u-boot/scripts/dtc/
dtc-lexer.l 168 yylval.integer = strtoull(yytext, &e, 0);
179 /* ERANGE is the only strtoull error triggerable
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 46 #define strtoull _strtoui64 macro
50 #define strtoull strtoul
380 return strtoull(nptr, endptr, base);
    [all...]
  /bionic/libc/include/
stdlib.h 78 unsigned long long strtoull(const char* __s, char** __end_ptr, int __base);
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
NumericInt.c 129 /** The strtol, strtoll, strtoul, and strtoull functions convert the initial
175 @return The strtol, strtoll, strtoul, and strtoull functions return the
426 /** The strtoull function converts the initial portion of the string pointed to
431 @return The strtoull function returns the converted value, if any. If no
437 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base) function
  /external/deqp-deps/glslang/glslang/Include/
Common.h 75 inline unsigned long long int strtoull (const char* str, char** endptr, int base) function
  /external/e2fsprogs/lib/blkid/
read.c 13 #define _XOPEN_SOURCE 600 /* for inclusion of strtoull */
32 #define STRTOULL strtoull /* defined in stdlib.h if you try hard enough */
34 /* FIXME: need to support real strtoull here */
35 #define STRTOULL strtoul
320 dev->bid_devno = STRTOULL(value, 0, 0);
324 dev->bid_time = STRTOULL(value, 0, 0);
  /external/gflags/src/
util.h 63 # define strtou64 strtoull

Completed in 714 milliseconds

1 23 4 5 6 7