Searched refs:nptr (Results 1 - 25 of 75) sorted by relevance

123

/macosx-10.10/Libc-1044.1.2/stdlib/FreeBSD/
H A Dreallocf.c35 void *nptr; local
37 nptr = realloc(ptr, size);
45 if (!nptr && ptr && size != 0)
47 return (nptr);
H A Dstrtoq.c46 strtoq(const char *nptr, char **endptr, int base) argument
49 return strtoll_l(nptr, endptr, base, __current_locale());
53 strtoq_l(const char *nptr, char **endptr, int base, locale_t loc) argument
57 return strtoll_l(nptr, endptr, base, loc);
H A Dstrtouq.c46 strtouq(const char *nptr, char **endptr, int base) argument
49 return strtoull_l(nptr, endptr, base, __current_locale());
53 strtouq_l(const char *nptr, char **endptr, int base, locale_t loc) argument
57 return strtoull_l(nptr, endptr, base, loc);
H A Dstrtoimax.c50 strtoimax_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
65 s = nptr;
142 *endptr = (char *)(any ? s - 1 : nptr);
147 strtoimax(const char * __restrict nptr, char ** __restrict endptr, int base) argument
149 return strtoimax_l(nptr, endptr, base, __current_locale());
H A Dstrtol.c51 strtol_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
66 s = nptr;
142 *endptr = (char *)(any ? s - 1 : nptr);
147 strtol(const char * __restrict nptr, char ** __restrict endptr, int base) argument
149 return strtol_l(nptr, endptr, base, __current_locale());
H A Dstrtoll.c50 strtoll_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
65 s = nptr;
142 *endptr = (char *)(any ? s - 1 : nptr);
147 strtoll(const char * __restrict nptr, char ** __restrict endptr, int base) argument
149 return strtoll_l(nptr, endptr, base, __current_locale());
H A Dstrtoul.c50 strtoul_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
63 s = nptr;
120 *endptr = (char *)(any ? s - 1 : nptr);
125 strtoul(const char * __restrict nptr, char ** __restrict endptr, int base) argument
127 return strtoul_l(nptr, endptr, base, __current_locale());
H A Dstrtoull.c50 strtoull_l(const char * __restrict nptr, char ** __restrict endptr, int base, argument
63 s = nptr;
120 *endptr = (char *)(any ? s - 1 : nptr);
125 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base) argument
127 return strtoull_l(nptr, endptr, base, __current_locale());
/macosx-10.10/swig-12/Lib/
H A Dinttypes.i48 extern intmax_t strtoimax (const char *nptr, char **endptr, int base);
51 extern uintmax_t strtoumax (const char *nptr, char ** endptr, int base);
55 extern intmax_t wcstoimax (const wchar_t *nptr, wchar_t **endptr, int base);
58 extern uintmax_t wcstoumax (const wchar_t *nptr, wchar_t ** endptr, int base);
64 extern intmax_t strtoimax (const char *nptr, char **endptr, int base);
67 extern uintmax_t strtoumax (const char *nptr, char **endptr,int base);
71 extern intmax_t wcstoimax (const wchar_t *nptr, wchar_t **endptr, int base);
74 extern uintmax_t wcstoumax (const wchar_t *nptr, wchar_t **endptr, int base);
80 extern intmax_t strtoimax (const char *nptr, char **endptr, int base);
83 extern uintmax_t strtoumax (const char *nptr, cha
[all...]
/macosx-10.10/ruby-106/ruby/missing/
H A Dstrtol.c7 strtol(const char *nptr, char **endptr, int base) argument
10 const char *p = nptr;
24 *endptr = (char *)nptr;
/macosx-10.10/Libc-1044.1.2/locale/FreeBSD/
H A Dwcstof.c44 wcstof_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
55 const wchar_t *nptr0 = nptr;
61 while (iswspace_l(*nptr, ctype))
62 nptr++;
67 first = nptr;
69 while (*nptr && (len = wcrtomb_l(mb, *nptr, &mbs, ctype)) != (size_t)-1) {
75 nptr++;
90 wcstof(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr) argument
92 return wcstof_l(nptr, endpt
[all...]
H A Dwcstold.c44 wcstold_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
55 const wchar_t *nptr0 = nptr;
61 while (iswspace_l(*nptr, ctype))
62 nptr++;
67 first = nptr;
69 while (*nptr && (len = wcrtomb_l(mb, *nptr, &mbs, ctype)) != (size_t)-1) {
75 nptr++;
90 wcstold(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr) argument
92 return wcstold_l(nptr, endpt
[all...]
H A Dwcstod.c68 wcstod_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
79 const wchar_t *nptr0 = nptr;
85 while (iswspace_l(*nptr, ctype))
86 nptr++;
91 first = nptr;
93 while (*nptr && (len = wcrtomb_l(mb, *nptr, &mbs, ctype)) != (size_t)-1) {
99 nptr++;
122 wcstod(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr) argument
124 return wcstod_l(nptr, endpt
[all...]
H A Dwcstol.c45 wcstol_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
58 s = nptr;
119 *endptr = (wchar_t *)(any ? s - 1 : nptr);
124 wcstol(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
126 return wcstol_l(nptr, endptr, base, __current_locale());
H A Dwcstoll.c51 wcstoll_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
64 s = nptr;
125 *endptr = (wchar_t *)(any ? s - 1 : nptr);
130 wcstoll(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
132 return wcstoll_l(nptr, endptr, base, __current_locale());
H A Dwcstoul.c45 wcstoul_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
58 s = nptr;
117 *endptr = (wchar_t *)(any ? s - 1 : nptr);
122 wcstoul(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, int base) argument
124 return wcstoul_l(nptr, endptr, base, __current_locale());
H A Dwcstoull.c51 wcstoull_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
64 s = nptr;
123 *endptr = (wchar_t *)(any ? s - 1 : nptr);
128 wcstoull(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
131 return wcstoull_l(nptr, endptr, base, __current_locale());
H A Dwcstoumax.c51 wcstoumax_l(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
64 s = nptr;
123 *endptr = (wchar_t *)(any ? s - 1 : nptr);
128 wcstoumax(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr, argument
131 return wcstoumax_l(nptr, endptr, base, __current_locale());
/macosx-10.10/Libc-1044.1.2/include/xlocale/
H A D_inttypes.h28 intmax_t strtoimax_l(const char * __restrict nptr, char ** __restrict endptr,
30 uintmax_t strtoumax_l(const char * __restrict nptr, char ** __restrict endptr,
32 intmax_t wcstoimax_l(const wchar_t * __restrict nptr,
34 uintmax_t wcstoumax_l(const wchar_t * __restrict nptr,
/macosx-10.10/swig-12/Lib/tcl/
H A Dtclprimtypes.swg86 const char *nptr = Tcl_GetStringFromObj(obj, &len);
87 if (nptr && len > 0) {
90 if (*nptr == '-') return SWIG_OverflowError;
92 v = strtoul(nptr, &endptr,0);
93 if (nptr[0] == '\0' || *endptr != '\0')
142 const char *nptr = Tcl_GetStringFromObj(obj, &len);
143 if (nptr && len > 0) {
147 v = strtoll(nptr, &endptr,0);
148 if (nptr[0] == '\0' || *endptr != '\0')
197 const char *nptr
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dstrtod.c51 strtod (nptr, endptr)
52 const char *nptr;
67 if (nptr == NULL)
73 s = nptr;
186 *endptr = (char *) nptr;
193 *endptr = (char *) nptr;
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOStringFuncs.c85 long strtol(const char *nptr, char **endptr, int base);
86 unsigned long strtoul(const char *nptr, char **endptr, int base);
87 quad_t strtoq(const char *nptr, char **endptr, int base);
88 u_quad_t strtouq(const char *nptr, char **endptr, int base);
127 strtol(const char *nptr, char **endptr, int base) argument
129 register const char *s = nptr;
212 *endptr = __CAST_AWAY_QUALIFIER(nptr, const, char *);
219 strtoul(const char *nptr, char **endptr, int base) argument
221 register const char *s = nptr;
283 *endptr = __CAST_AWAY_QUALIFIER(nptr, cons
297 strtoq(const char *nptr, char **endptr, int base) argument
398 strtouq(const char *nptr, char **endptr, register int base) argument
[all...]
/macosx-10.10/BerkeleyDB-21/db/clib/
H A Dstrtol.c51 strtol(nptr, endptr, base)
52 const char * nptr;
67 s = nptr;
140 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoul.c51 strtoul(nptr, endptr, base)
52 const char * nptr;
65 s = nptr;
119 *endptr = (char *)(any ? s - 1 : nptr);
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/port/
H A Dlibport.h42 unsigned long strtoul(const char *nptr, char **endptr, int base);

Completed in 215 milliseconds

123