HomeSort by: relevance | last modified time | path
    Searched refs:strtou (Results 1 - 18 of 18) sorted by relevancy

  /src/common/lib/libc/stdlib/
strtou.c 1 /* $NetBSD: strtou.c,v 1.3 2019/11/28 12:33:23 roy Exp $ */
38 __RCSID("$NetBSD: strtou.c,v 1.3 2019/11/28 12:33:23 roy Exp $");
60 #define _FUNCNAME strtou
67 __weak_alias(strtou, _strtou)
  /src/lib/libc/stdlib/
Makefile.inc 16 strtoi.c strtou.c strtonum.c \
60 strfmon.3 strsuftoll.3 strtod.3 strtoi.3 strtol.3 strtou.3 strtoul.3 \
65 strtou.3: strtoi.3
67 ${TOOL_SED} -e s/strtoi/strtou/g -e s/STRTOI/STRTOU/g \
68 -e 's/an intmax_t/a unitmax_t/g' -e 's/strtou 3/strtoi 3/g' \
70 CLEANFILES += strtou.3
109 MLINKS+=strtou.3 strtou_l.3
  /src/include/
inttypes.h 83 uintmax_t strtou(const char * __restrict, char ** __restrict, int,
  /src/lib/libutil/
efun.c 195 uintmax_t rv = strtou(nptr, NULL, base, lo, hi, &e);
  /src/sbin/efi/
bootvar.c 274 idx = (int)strtou(var_array[i]->name + n, NULL, 16, 0, 0xffff,
277 err(EXIT_FAILURE, "strtou: %s", var_array[i]->name);
utils.c 373 val = strtou(str, endptr, base, 0, USHRT_MAX, &rstatus);
  /src/usr.sbin/inetd/
parse_v2.c 950 size_t count = (size_t)strtou(count_str, NULL, 10, 0,
987 size_t count = (size_t)strtou(count_str, NULL, 10, 0,
parse.c 713 sep->se_service_max = (size_t)strtou(cp1, NULL, 10, 0,
  /src/tools/compat/
Makefile 27 strtoi.c strtou.c \
configure.ac 204 setenv, strtonum, strtoi, strtoll, strtou, setprogname, shquote],,, [
253 strtoi strtoll strtou strtonum \
compat_defs.h 639 uintmax_t strtou(const char * __restrict, char ** __restrict, int,
  /src/sys/lib/libkern/
libkern.h 471 uintmax_t strtou(const char * __restrict, char ** __restrict, int, uintmax_t,
  /src/usr.sbin/sysinst/
util.c 2277 n = strtou(p+1, &endp, 10, 0, INT_MAX, &e);
2296 n = strtou(p+1, &endp, 10, 0, INT_MAX, &e);
2331 n = strtou(p+1, &endp, 10, 0, INT_MAX, &e);
disks.c 597 strtou(dev+len, &endp, 10, 0, INT_MAX, &e);
  /src/sbin/raidctl/
raidctl.c 1377 unsigned int num = (unsigned int)strtou(str, NULL, 10, 0, INT_MAX, &e);
  /src/lib/libc/include/
namespace.h 77 #define strtou _strtou macro
  /src/usr.bin/kdump/
kdump.c 1646 unsigned long u = strtou(name, NULL, 0, 0, ULONG_MAX, &e);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_interceptors.inc 7846 INTERCEPTOR(UINTMAX_T, strtou, const char *nptr, char **endptr, int base,
7849 COMMON_INTERCEPTOR_ENTER(ctx, strtou, nptr, endptr, base, low, high, rstatus);
7851 UINTMAX_T ret = REAL(strtou)(nptr, &real_endptr, base, low, high, rstatus);
7859 COMMON_INTERCEPT_FUNCTION(strtou)

Completed in 38 milliseconds