Searched refs:strtoumax (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dxstrtoumax.c1 #define __strtol strtoumax
H A Dstrtoimax.c53 # define strtoimax strtoumax
H A Dinttypes_.h1083 extern uintmax_t strtoumax (const char *, char **, int);
1086 # undef strtoumax macro
1087 # define strtoumax(p,e,b) \ macro
1088 (GL_LINK_WARNING ("strtoumax is unportable - " \
1089 "use gnulib module strtoumax for portability"), \
1090 strtoumax (p, e, b))
H A Dgnulib.mk1206 ## begin gnulib module strtoumax
1209 EXTRA_DIST += strtoumax.c
1211 EXTRA_libtar_a_SOURCES += strtoumax.c
1213 ## end gnulib module strtoumax
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dxstrtoumax.c1 /* xstrtoumax.c -- A more useful interface to strtoumax.
28 #define __strtol strtoumax
H A Dstrtoimax.c78 # define strtoimax strtoumax
H A Dxstrtol.c93 #if !HAVE_DECL_STRTOUMAX && !defined strtoumax
94 uintmax_t strtoumax ();
/macosx-10.9.5/text_cmds-87/sort/
H A Dxstrtoumax.c1 /* xstrtoumax.c -- A more useful interface to strtoumax.
26 #define __strtol strtoumax
H A Dxstrtol.c66 #if !HAVE_DECL_STRTOUMAX && !defined strtoumax
67 uintmax_t strtoumax ();
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dstrtoumax.c51 #ifdef strtoumax
52 #undef strtoumax macro
56 strtoumax (ptr, endptr, base) function
94 x = strtoumax("42", &endptr, 10);
H A DMakefile.in90 strtoll.c strtoull.c strtoimax.c strtoumax.c memset.c strstr.c \
176 strtoumax.o: strtoumax.c
235 strtoumax.o: ${BUILD_DIR}/config.h
421 strtoumax.o: ${BASHINCDIR}/stdc.h
/macosx-10.9.5/swig-10/Lib/
H A Dinttypes.i51 extern uintmax_t strtoumax (const char *nptr, char ** endptr, int base);
67 extern uintmax_t strtoumax (const char *nptr, char **endptr,int base);
83 extern uintmax_t strtoumax (const char *nptr, char **endptr, int base);
/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Dstrtoumax.c34 __FBSDID("$FreeBSD: src/lib/libc/stdlib/strtoumax.c,v 1.11 2007/01/09 00:28:10 imp Exp $");
125 strtoumax(const char * __restrict nptr, char ** __restrict endptr, int base) function
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Dsystem.h220 #if ! HAVE_STRTOUMAX && ! defined strtoumax
221 uintmax_t strtoumax (char const *, char **, int);
H A Difdef.c141 value[i] = strtoumax (f, &fend, 10);
H A Ddiff.c322 numval = strtoumax (optarg, &numend, 10);
498 numval = strtoumax (optarg, &numend, 10);
526 numval = strtoumax (optarg, &numend, 10);
H A Dsdiff.c1147 llen = val = strtoumax (diff_help + 1, &numend, 10);
1150 rlen = val = strtoumax (numend + 1, &numend, 10);
/macosx-10.9.5/gnutar-452/gnutar/src/
H A Dincremen.c694 u = strtoumax (buf, &ebuf, 10);
710 u = strtoumax (buf_ns, &ebuf, 10);
750 u = strtoumax (strp, &ebuf, 10);
765 u = strtoumax (strp, &ebuf, 10);
785 u = strtoumax (strp, &ebuf, 10);
800 u = strtoumax (strp, &ebuf, 10);
912 *pval = strtoumax (buf, &ep, 10);
1065 incremental_version = strtoumax (ebuf + 1, NULL, 10);
H A Dxheader.c506 len = u = strtoumax (p, &len_lim, 10);
885 uintmax_t i = strtoumax (arg, &arg_lim, 10);
976 && (errno = 0, u = strtoumax (arg, &arg_lim, 10), !*arg_lim)))
1298 u = strtoumax (arg, &delim, 10);
H A Dsparse.c1082 u = strtoumax (arg, &arg_lim, 10);
/macosx-10.9.5/netcat-20/
H A Dnetcat.c243 tcp_conn_timeout = strtoumax(optarg, &endp, 10);
249 tcp_conn_keepidle = strtoumax(optarg, &endp, 10);
255 tcp_conn_keepintvl = strtoumax(optarg, &endp, 10);
261 tcp_conn_keepcnt = strtoumax(optarg, &endp, 10);
267 tcp_conn_adaptive_rtimo = strtoumax(optarg, &endp, 10);
273 tcp_conn_adaptive_wtimo = strtoumax(optarg, &endp, 10);
/macosx-10.9.5/Libc-997.90.3/include/
H A Dinttypes.h257 strtoumax(const char * __restrict __nptr,
/macosx-10.9.5/bash-92/bash-3.2/
H A Dexterns.h352 extern uintmax_t strtoumax __P((const char *, char **, int));
/macosx-10.9.5/bash-92/bash-3.2/builtins/
H A Dprintf.c938 ret = strtoumax (garglist->word->word, &ep, 0);
/macosx-10.9.5/pcre-7/pcre/
H A Dpcrecpp.cc857 unsigned long long r = strtoumax(str, &end, radix);

Completed in 174 milliseconds

12