Searched refs:strtol (Results 1 - 25 of 752) sorted by relevance

1234567891011>>

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dstrtol.c23 * strtol() implementation
28 #define S2I_function strtol
H A Dtransition.c46 #ifndef strtol
51 return strtol(a, b, c);
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dstrtol.c41 (void) sprintf(lm_usage, "note: measures strtol()");
53 (void) strtol("1", NULL, 10);
54 (void) strtol("11", NULL, 10);
55 (void) strtol("123", NULL, 10);
56 (void) strtol("1234", NULL, 10);
57 (void) strtol("12345", NULL, 10);
58 (void) strtol("123456", NULL, 10);
59 (void) strtol("1234567", NULL, 10);
60 (void) strtol("12345678", NULL, 10);
61 (void) strtol("12345678
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/clib/
H A Datoi.c49 return (int)strtol(str, (char **)NULL, 10);
H A Datol.c49 return strtol(str, (char **)NULL, 10);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dstrtoul.c24 #include <strtol.c>
H A Dstrtoimax.c41 extern long strtol __P((const char *, char **, int));
72 return (strtol (ptr, endptr, base));
100 z = strtol("42", &endptr, 10);
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstrtoll.c21 #include <strtol.c>
H A Dstrtoimax.c54 # define strtol strtoul macro
75 return strtol (ptr, endptr, base);
H A Dstrtol.c59 # define strtol __wcstoull_l macro
61 # define strtol __wcstoul_l macro
65 # define strtol __strtoull_l macro
67 # define strtol __strtoul_l macro
73 # define strtol __wcstoll_l macro
75 # define strtol __wcstol_l macro
79 # define strtol __strtoll_l macro
81 # define strtol __strtol_l macro
89 # define strtol wcstoull macro
91 # define strtol wcstou macro
95 # define strtol macro
97 # define strtol macro
103 # define strtol macro
105 # define strtol macro
109 # define strtol macro
241 INTERNAL (strtol) (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
432 strtol (const STRING_TYPE *nptr, STRING_TYPE **endptr, function
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/libsa/
H A Dstdlib.h46 * Added strtol and strtoul prototypes.
81 extern long int strtol (const char *, char **, int);
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dstrtoimax.c64 long strtol PARAMS ((char const *, char **, int));
79 # define strtol strtoul macro
100 return strtol (ptr, endptr, base);
H A Dstrtol.c71 # define strtol __wcstoull_l macro
73 # define strtol __wcstoul_l macro
77 # define strtol __strtoull_l macro
79 # define strtol __strtoul_l macro
85 # define strtol __wcstoll_l macro
87 # define strtol __wcstol_l macro
91 # define strtol __strtoll_l macro
93 # define strtol __strtol_l macro
101 # define strtol wcstoull macro
103 # define strtol wcstou macro
107 # define strtol macro
109 # define strtol macro
115 # define strtol macro
117 # define strtol macro
121 # define strtol macro
[all...]
H A Dposixver.c52 long int i = strtol (s, &e, 10);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dgetenv_num.c49 || (value = strtol(src, &dst, 0)) < 0
/macosx-10.10.1/ruby-106/ruby/missing/
H A Dstrtol.c1 /* public domain rewrite of strtol(3) */
7 strtol(const char *nptr, char **endptr, int base) function
/macosx-10.10.1/uucp-11/uucp/uuconf/
H A Dint.c49 i = strtol ((char *) zval, &zend, 10);
/macosx-10.10.1/tcsh-65/tcsh/config/
H A Dsunos3581 #define strtoul(a, b, c) ((unsigned long)strtol((a), (b), (c)))
H A Dsunos4196 #define strtoul(a, b, c) ((unsigned long)strtol((a), (b), (c)))
H A Dsunos41393 #define strtoul(a, b, c) ((unsigned long)strtol((a), (b), (c)))
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dstrtoofft.h40 * of 'long' the conversion function to use is strtol().
57 # define curlx_strtoofft strtol
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Drecstr.c61 n = (int)strtol(s, &t, 0);
113 n = strtol(s, &t, 0);
116 v = strtol(t, &t, 0);
182 a[n++] = strtol(s, &t, 0);
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dstrtol.c2 * strtol.c --
4 * Source code for the "strtol" library procedure.
12 * RCS: @(#) $Id: strtol.c,v 1.6 2007/04/16 13:36:34 dkf Exp $
22 * strtol --
39 strtol(
38 strtol( function
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Dstrtol.c2 * strtol.c --
4 * Source code for the "strtol" library procedure.
12 * RCS: @(#) $Id: strtol.c,v 1.4 2002/02/25 16:23:26 dgp Exp $
24 * strtol --
42 strtol(string, endPtr, base)
41 strtol(string, endPtr, base) function
/macosx-10.10.1/text_cmds-88/sort/
H A Dposixver.c51 long int i = strtol (s, &e, 10);

Completed in 412 milliseconds

1234567891011>>