HomeSort by relevance Sort by last modified time
    Searched refs:endptr (Results 226 - 250 of 291) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/extras/verity/
build_verity_tree.cpp 180 char* endptr; local
182 unsigned long long int inSize = strtoull(optarg, &endptr, 0);
183 if (optarg[0] == '\0' || *endptr != '\0' ||
  /external/jemalloc/src/
util.c 100 malloc_strtoumax(const char *restrict nptr, char **restrict endptr, int base)
204 if (endptr != NULL) {
207 *endptr = (char *)nptr;
209 *endptr = (char *)p;
  /external/e2fsprogs/lib/blkid/
probe.c 251 char *endptr; local
261 major = strtol(cp, &endptr, 10);
262 if (cp == endptr || *endptr != '.')
264 cp = endptr + 1;
265 minor = strtol(cp, &endptr, 10);
266 if (cp == endptr || *endptr != '.')
268 cp = endptr + 1;
269 rev = strtol(cp, &endptr, 10)
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 564 int32 strto32_adaptor(const char *nptr, char **endptr, int base) {
567 const long result = strtol(nptr, endptr, base);
584 uint32 strtou32_adaptor(const char *nptr, char **endptr, int base) {
587 const unsigned long result = strtoul(nptr, endptr, base);
1212 char* endptr; local
    [all...]
  /ndk/sources/android/support/include/
wchar.h 153 intmax_t wcstoimax (const wchar_t * nptr, wchar_t** endptr , int base);
154 uintmax_t wcstoumax (const wchar_t * nptr, wchar_t** endptr , int base);
  /prebuilts/ndk/9/sources/android/support/include/
wchar.h 153 intmax_t wcstoimax (const wchar_t * nptr, wchar_t** endptr , int base);
154 uintmax_t wcstoumax (const wchar_t * nptr, wchar_t** endptr , int base);
  /external/toybox/toys/pending/
netstat.c 128 char *endptr; local
135 uli = strtoul(str, &endptr, base);
141 if (endp) *endp = endptr;
142 if (endptr[0]) {
143 if (isalnum(endptr[0]) || errno) { //"123abc" or out-of-range
syslogd.c 250 char *endptr; local
253 port = strtol(++p, &endptr, 10);
254 if (*endptr || endptr == p || port < 0 || port > 65535)
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 828 char* endptr; local
830 value = strtol(str, &endptr, 10);
831 if (*endptr == '\0') {
835 } else if (toupper(*endptr) == 'M' && *(endptr+1) == '\0') {
    [all...]
  /external/selinux/libsemanage/src/
conf-parse.y 509 char *endptr;
512 current_conf->server_port = strtol(s + 1, &endptr, 10);
513 if (*(s + 1) == '\0' || *endptr != '\0') {
modules.c 895 char *endptr = NULL; local
904 val = strtoul(str, &endptr, 10);
906 if (errno != 0 || endptr == str || *endptr != '\0' || val > UINT16_MAX) {
  /frameworks/av/camera/
CameraParameters.cpp 298 char **endptr = NULL)
315 if (endptr) {
316 *endptr = end;
  /system/bt/osi/src/
config.c 131 char *endptr; local
132 int ret = strtol(entry->value, &endptr, 0);
133 return (*endptr == '\0') ? ret : def_value;
  /system/extras/simpleperf/
environment.cpp 247 char* endptr; local
248 *pid = static_cast<pid_t>(strtol(s.c_str(), &endptr, 10));
249 return *endptr == '\0';
  /external/bison/darwin-lib/
stdlib.h     [all...]
  /external/bison/linux-lib/
stdlib.h     [all...]
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 559 void CallStrtol(const char *nptr, char **endptr, int base) {
560 Ident(strtol(nptr, endptr, base));
562 void CallStrtoll(const char *nptr, char **endptr, int base) {
563 Ident(strtoll(nptr, endptr, base));
  /external/jemalloc/include/jemalloc/internal/
util.h 97 char **restrict endptr, int base);
  /external/bison/lib/
stdlib.in.h 832 If ENDPTR is not NULL, the address of the first byte after the integer is
833 stored in *ENDPTR.
838 (const char *string, char **endptr, int base)
842 (const char *string, char **endptr, int base));
857 If ENDPTR is not NULL, the address of the first byte after the integer is
858 stored in *ENDPTR.
863 (const char *string, char **endptr, int base)
867 (const char *string, char **endptr, int base));
  /external/linux-tools-perf/src/tools/perf/util/
annotate.c 52 char *endptr, *tok, *name; local
54 ops->target.addr = strtoull(ops->raw, &endptr, 16);
56 name = strchr(endptr, '<');
73 tok = strchr(endptr, '(');
79 tok = strchr(endptr, '*');
141 char *endptr, *name, *t; local
146 *addrp = strtoull(comment, &endptr, 16);
147 name = strchr(endptr, '<');
    [all...]
  /bionic/libc/dns/resolv/
res_debug.c 1184 char *endptr; local
1195 result = strtoul(buf + 5, &endptr, 10);
1196 if (errno == 0 && *endptr == '\0' && result <= 0xffffU)
1207 char *endptr; local
    [all...]
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 645 char **endptr, int base) {
650 return REAL(strtol)(nptr, endptr, base);
654 StrtolFixAndCheck(ctx, nptr, endptr, real_endptr, base);
698 char **endptr, int base) {
703 return REAL(strtoll)(nptr, endptr, base);
707 StrtolFixAndCheck(ctx, nptr, endptr, real_endptr, base);
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 412 // Hack: always pass nptr and endptr as part of __VA_ARGS_ to avoid having to
417 __msan_unpoison(endptr, sizeof(*endptr)); \
421 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr) { \
422 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr); \
426 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
428 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base); \
432 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
434 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, loc); \
438 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
m_gdbserver.c 1442 HChar* endptr; local
    [all...]
target.c 607 HChar *endptr; local
618 lm_modid_offset = (SizeT) VG_(strtoull16) ( w, &endptr );
619 if (endptr == w)

Completed in 1157 milliseconds

1 2 3 4 5 6 7 8 91011>>