Searched refs:endPtr (Results 1 - 25 of 86) sorted by relevance

1234

/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dfixstrtod.c30 char **endPtr)
33 d = strtod(string, endPtr);
34 if ((endPtr != NULL) && (*endPtr != string) && ((*endPtr)[-1] == 0)) {
35 *endPtr -= 1;
28 fixstrtod( char *string, char **endPtr) argument
H A Dstrtol.c27 * The return value is the integer equivalent of string. If endPtr is
28 * non-NULL, then *endPtr is filled in with the character after the last
30 * integer value, then zero is returned and *endPtr is set to string.
44 char **endPtr, /* Where to store address of terminating
70 result = -(strtoul(p, endPtr, base));
75 result = strtoul(p, endPtr, base);
77 if ((result == 0) && (endPtr != 0) && (*endPtr == p)) {
78 *endPtr = (char *) string;
38 strtol( CONST char *string, char **endPtr, int base) argument
H A Dstdlib.h39 extern double strtod _ANSI_ARGS_((CONST char *string, char **endPtr));
40 extern long strtol _ANSI_ARGS_((CONST char *string, char **endPtr,
43 char **endPtr, int base));
H A Dstrtoul.c43 * The return value is the integer equivalent of string. If endPtr is
44 * non-NULL, then *endPtr is filled in with the character after the last
46 * integer value, then zero is returned and *endPtr is set to string.
60 char **endPtr, /* Where to store address of terminating
204 if (endPtr != 0) {
206 *endPtr = (char *) p;
54 strtoul( CONST char *string, char **endPtr, int base) argument
H A Dstrtod.c54 * representation of the characters in string. If endPtr isn't
55 * NULL, then *endPtr is filled in with the address of the
78 char **endPtr) /* If non-NULL, store terminating character's
247 if (endPtr != NULL) {
248 *endPtr = (char *) p;
65 strtod( CONST char *string, char **endPtr) argument
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Dfixstrtod.c28 fixstrtod(string, endPtr)
30 char **endPtr;
33 d = strtod(string, endPtr);
34 if ((endPtr != NULL) && (*endPtr != string) && ((*endPtr)[-1] == 0)) {
35 *endPtr -= 1;
H A Dstrtol.c29 * The return value is the integer equivalent of string. If endPtr
30 * is non-NULL, then *endPtr is filled in with the character
33 * and *endPtr is set to string.
42 strtol(string, endPtr, base)
48 char **endPtr; /* Where to store address of terminating
75 result = -(strtoul(p, endPtr, base));
80 result = strtoul(p, endPtr, base);
82 if ((result == 0) && (endPtr != 0) && (*endPtr == p)) {
83 *endPtr
[all...]
H A Dstrtoll.c31 * The return value is the integer equivalent of string. If endPtr
32 * is non-NULL, then *endPtr is filled in with the character
35 * and *endPtr is set to string.
48 strtoll(string, endPtr, base)
54 char **endPtr; /* Where to store address of terminating
83 uwResult = strtoull(p, endPtr, base);
98 uwResult = strtoull(p, endPtr, base);
108 if ((result == 0) && (endPtr != 0) && (*endPtr == p)) {
109 *endPtr
[all...]
H A Dstdlib.h39 extern double strtod _ANSI_ARGS_((CONST char *string, char **endPtr));
40 extern long strtol _ANSI_ARGS_((CONST char *string, char **endPtr,
43 char **endPtr, int base));
H A Dstrtoull.c46 * The return value is the integer equivalent of string. If endPtr
47 * is non-NULL, then *endPtr is filled in with the character
50 * and *endPtr is set to string.
63 strtoull(string, endPtr, base)
69 char **endPtr; /* Where to store address of terminating
236 if (endPtr != 0) {
237 *endPtr = (char *) p;
248 if (endPtr != 0) {
259 *endPtr = (char *) p;
H A Dstrtoul.c44 * The return value is the integer equivalent of string. If endPtr
45 * is non-NULL, then *endPtr is filled in with the character
48 * and *endPtr is set to string.
57 strtoul(string, endPtr, base)
63 char **endPtr; /* Where to store address of terminating
206 if (endPtr != 0) {
208 *endPtr = (char *) p;
H A Dstrtod.c55 * representation of the characters in string. If endPtr isn't
56 * NULL, then *endPtr is filled in with the address of the
67 strtod(string, endPtr)
80 char **endPtr; /* If non-NULL, store terminating character's
251 if (endPtr != NULL) {
252 *endPtr = (char *) p;
/macosx-10.10.1/tcl-105/tcl_ext/tls/tls/
H A Dfixstrtod.c28 fixstrtod(string, endPtr)
30 char **endPtr;
33 d = strtod(string, endPtr);
34 if ((endPtr != NULL) && (*endPtr != string) && ((*endPtr)[-1] == 0)) {
35 *endPtr -= 1;
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A Dstdlib.h39 extern double strtod _ANSI_ARGS_((CONST char *string, char **endPtr));
40 extern long strtol _ANSI_ARGS_((CONST char *string, char **endPtr,
43 char **endPtr, int base));
/macosx-10.10.1/tcl-105/tk/tk/compat/
H A Dstdlib.h39 extern double strtod _ANSI_ARGS_((CONST char *string, char **endPtr));
40 extern long strtol _ANSI_ARGS_((CONST char *string, char **endPtr,
43 char **endPtr, int base));
/macosx-10.10.1/tcl-105/tk84/tk/compat/
H A Dstdlib.h39 extern double strtod _ANSI_ARGS_((CONST char *string, char **endPtr));
40 extern long strtol _ANSI_ARGS_((CONST char *string, char **endPtr,
43 char **endPtr, int base));
/macosx-10.10.1/cddafs-253/Classes/
H A DTSystemUtils.cpp157 UInt8 * endPtr = NULL; local
182 endPtr = ( UInt8 * ) dataPtr + fileSize;
184 while ( dataPtr < endPtr )
187 bytesRead = CFReadStreamRead ( readStream, dataPtr, endPtr - dataPtr );
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkArgv.c182 char *endPtr;
184 *((int *) infoPtr->dst) = strtol(argv[srcIndex], &endPtr, 0);
185 if ((endPtr == argv[srcIndex]) || (*endPtr != 0)) {
218 char *endPtr;
220 *((double *) infoPtr->dst) = strtod(argv[srcIndex], &endPtr);
221 if ((endPtr == argv[srcIndex]) || (*endPtr != 0)) {
181 char *endPtr; local
217 char *endPtr; local
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkArgv.c188 char *endPtr;
191 strtol(argv[srcIndex], &endPtr, 0);
192 if ((endPtr == argv[srcIndex]) || (*endPtr != 0)) {
227 char *endPtr;
230 strtod(argv[srcIndex], &endPtr);
231 if ((endPtr == argv[srcIndex]) || (*endPtr != 0)) {
187 char *endPtr; local
226 char *endPtr; local
/macosx-10.10.1/tcl-105/tk/tk/win/
H A DtkWinClipboard.c247 char *buffer, *p, *rawText, *endPtr;
268 for (p = cbPtr->buffer, endPtr = p + cbPtr->length;
269 p < endPtr; p++) {
285 for (p = cbPtr->buffer, endPtr = p + cbPtr->length;
286 p < endPtr; p++) {
244 char *buffer, *p, *rawText, *endPtr; local
/macosx-10.10.1/tcl-105/tk84/tk/win/
H A DtkWinClipboard.c253 char *buffer, *p, *rawText, *endPtr;
273 for (p = cbPtr->buffer, endPtr = p + cbPtr->length;
274 p < endPtr; p++) {
290 for (p = cbPtr->buffer, endPtr = p + cbPtr->length;
291 p < endPtr; p++) {
250 char *buffer, *p, *rawText, *endPtr; local
/macosx-10.10.1/tcl-105/tk84/tk/macosx/
H A DtkMacOSXClipboard.c304 char *buffer, *p, *endPtr, *buffPtr;
332 for (p = cbPtr->buffer, endPtr = p + cbPtr->length;
333 p < endPtr; p++) {
298 char *buffer, *p, *endPtr, *buffPtr; local
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclRegexp.c226 * The variables at *startPtr and *endPtr are modified to hold the
245 const char **endPtr) /* Store address of character just after last
252 *startPtr = *endPtr = NULL;
254 *startPtr = *endPtr = NULL;
262 *endPtr = Tcl_UtfAtIndex(string, regexpPtr->matches[index].rm_eo);
340 * The variables at *startPtr and *endPtr are modified to hold the
360 int *endPtr) /* Store address of character just after last
367 *endPtr = regexpPtr->details.rm_extend.rm_eo;
370 *endPtr = -1;
373 *endPtr
234 Tcl_RegExpRange( Tcl_RegExp re, int index, const char **startPtr, const char **endPtr) argument
346 TclRegExpRangeUniChar( Tcl_RegExp re, int index, int *startPtr, int *endPtr) argument
[all...]
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcinst/
H A Dinifile.c330 char *endPtr; local
335 for (endPtr = &str[strlen (str) - 1]; endPtr >= str && isspace (*endPtr);
336 endPtr--);
337 endPtr[1] = 0;
338 return endPtr >= str ? endPtr : NULL;
350 char *endPtr; local
360 endPtr
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclRegexp.c232 * The variables at *startPtr and *endPtr are modified to hold the
243 Tcl_RegExpRange(re, index, startPtr, endPtr)
251 CONST char **endPtr; /* Store address of character just after last
258 *startPtr = *endPtr = NULL;
260 *startPtr = *endPtr = NULL;
268 *endPtr = Tcl_UtfAtIndex(string, regexpPtr->matches[index].rm_eo);
347 * The variables at *startPtr and *endPtr are modified to hold the
358 TclRegExpRangeUniChar(re, index, startPtr, endPtr)
367 int *endPtr; /* Store address of character just after last
374 *endPtr
[all...]

Completed in 205 milliseconds

1234