Lines Matching defs:endptr
798 strtosize(const char *str, char **endptr, int radix)
804 /* endptr may be NULL */
809 if (endptr)
810 *endptr = expr;
851 if (endptr)
852 *endptr = expr;
861 if (endptr)
862 *endptr = expr;
865 if (endptr)
866 *endptr = expr;
872 strtolimit(const char *str, char **endptr, int radix)
876 /* endptr may be NULL */
879 if (endptr)
880 *endptr = (char *)__UNCONST(str) + strlen(str);
883 return (strtosize(str, endptr, radix));