Searched refs:endp (Results 1 – 6 of 6) sorted by relevance
/stdlib/ |
A D | getsubopt.c | 41 char *endp, *vstart; in getsubopt() local 48 endp = __strchrnul (*optionp, ','); in getsubopt() 51 vstart = memchr (*optionp, '=', endp - *optionp); in getsubopt() 53 vstart = endp; in getsubopt() 62 *valuep = vstart != endp ? vstart + 1 : NULL; in getsubopt() 64 if (*endp != '\0') in getsubopt() 65 *endp++ = '\0'; in getsubopt() 66 *optionp = endp; in getsubopt() 74 if (*endp != '\0') in getsubopt() 75 *endp++ = '\0'; in getsubopt() [all …]
|
A D | tst-strtod1i.c | 54 char *endp; in do_test() local 63 d = __strtod_internal (tests[n].str, &endp, 1); in do_test() 70 else if (endp - tests[n].str != tests[n].nread) in do_test() 73 tests[n].str, endp - tests[n].str, tests[n].nread); in do_test()
|
A D | bug-strtod2.c | 22 char *endp; \ 23 FTYPE d = strto ## FSUF (tests[i], &endp); \ 24 if (*endp != '\0') \
|
A D | strtod_nan_main.c | 50 STRING_TYPE *endp; in STRTOD_NAN() local 53 mant = STRTOULL (str, &endp, 0); in STRTOD_NAN() 54 if (endp == cp) in STRTOD_NAN()
|
A D | tst-strtod6.c | 12 char *endp; \ 15 FTYPE d = strto ## FSUF (str, &endp); \ 26 if (strcmp (endp, "something") != 0) \
|
A D | strtod_l.c | 668 STRING_TYPE *endp; in ____STRTOF_INTERNAL() local 669 retval = STRTOF_NAN (cp + 1, &endp, L_(')')); in ____STRTOF_INTERNAL() 670 if (*endp == L_(')')) in ____STRTOF_INTERNAL() 672 cp = endp + 1; in ____STRTOF_INTERNAL()
|
Completed in 11 milliseconds