Searched defs:endptr (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/Ipf/
H A Dstrtold.c15 strtold(const char * __restrict nptr, char ** __restrict endptr) argument
17 return (long double)strtod( nptr, endptr);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A D_wcstod.h55 _FUNCNAME(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr) argument
63 /* endptr may be null */
113 if (endptr != NULL)
115 *endptr = __UNCONST(start + (size_t)(end - buf));
122 if (endptr != NULL)
123 *endptr = __UNCONST(nptr);
H A D_wcstol.h58 wchar_t **endptr,
69 /* endptr may be NULL */
150 if (endptr != 0)
151 *endptr = __UNCONST(any ? s - 1 : nptr);
56 _FUNCNAME( const wchar_t *nptr, wchar_t **endptr, int base ) argument
H A D_wcstoul.h60 wchar_t **endptr,
71 /* endptr may be NULL */
130 if (endptr != 0)
131 *endptr = __UNCONST(any ? s - 1 : nptr);
58 _FUNCNAME( const wchar_t *nptr, wchar_t **endptr, int base ) argument
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DNumericInt.c165 is stored in the object pointed to by endptr, provided that endptr is
173 to by endptr, provided that endptr is not a null pointer.
184 strtol(const char * __restrict nptr, char ** __restrict endptr, int base) argument
195 if(endptr != NULL) {
196 *endptr = NULL;
256 if(endptr != NULL) {
257 *endptr = (char *)pEnd;
273 strtoul(const char * __restrict nptr, char ** __restrict endptr, in argument
348 strtoll(const char * __restrict nptr, char ** __restrict endptr, int base) argument
437 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base) argument
[all...]
/vbox/src/VBox/Main/src-server/
H A DMatching.cpp101 char *endptr = NULL; local
105 vrc = RTStrToInt64Ex(aFilter + aStart, &endptr, 0, &val.ll);
107 vrc = RTStrToUInt64Ex(aFilter + aStart, &endptr, 0, &val.ull);
109 AssertReturn(endptr, 0);
111 size_t parsed = endptr - aFilter;
/vbox/src/VBox/RDP/client-1.8.3/
H A Dseamless.c77 char *endptr; local
99 id = strtoul(tok3, &endptr, 0);
100 if (*endptr)
103 group = strtoul(tok4, &endptr, 0);
104 if (*endptr)
107 parent = strtoul(tok5, &endptr, 0);
108 if (*endptr)
111 flags = strtoul(tok6, &endptr, 0);
112 if (*endptr)
122 id = strtoul(tok3, &endptr,
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprscanf.c133 _pr_strtoull(const char *str, char **endptr, int base) argument
146 if (endptr) {
147 *endptr = (char *) str;
199 if (endptr) {
200 *endptr = (char *) str;
214 if (endptr) {
215 *endptr = (char *) cPtr;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dstring.c82 long int strtolW( const WCHAR *nptr, WCHAR **endptr, int base ) argument
164 if (endptr != NULL)
165 *endptr = (WCHAR *)s;
188 if (endptr != NULL)
192 *endptr = (WCHAR *)&save[-1];
195 *endptr = (WCHAR *)nptr;
202 unsigned long int strtoulW( const WCHAR *nptr, WCHAR **endptr, int base ) argument
284 if (endptr != NULL)
285 *endptr = (WCHAR *)s;
300 if (endptr !
[all...]
/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dmount.vboxsf.c84 char *endptr; local
85 long long int val = strtoll(s, &endptr, base);
87 if (val < INT_MIN || val > INT_MAX || endptr < s + size)
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DCrtWrapper.c207 long strtol (const char *nptr, char **endptr, int base) argument
217 unsigned long strtoul (const char *nptr, char **endptr, int base) argument
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_proxy.c170 char *endptr; local
183 l = strtoul(c, &endptr, 0);
185 if (l == ULONG_MAX || (l == 0 && endptr == c))
190 * If the whole string is invalid, endptr will equal
195 if (endptr == c)
198 c = endptr;
/vbox/src/libs/libpng-1.2.8/
H A Dpngrutil.c19 __inline double strtod(const char *nptr, char **endptr) argument
32 *endptr = (char *)nptr + (png_strlen(nptr) - len + 1);
1561 png_charp buf, units, endptr; local
1606 endptr = purpose + slength;
1610 if (endptr <= buf + 12)
1660 for (params[i] = buf; *buf != 0x00 && buf <= endptr; buf++)
1664 if (buf > endptr)

Completed in 854 milliseconds