Home | History | Annotate | Download | only in libxml2

Lines Matching full:endp

942    @param endp Pointer to end of the converted string.
962 TRIO_ARGS2((source, endp),
964 char **endp)
967 return strtold(source, endp);
1079 if (endp)
1080 *endp = (char *)source;
1090 @param endp Pointer to end of the converted string.
1097 TRIO_ARGS2((source, endp),
1099 char **endp)
1102 return strtod(source, endp);
1104 return (double)trio_to_long_double(source, endp);
1113 @param endp Pointer to end of the converted string.
1120 TRIO_ARGS2((source, endp),
1122 char **endp)
1125 return strtof(source, endp);
1127 return (float)trio_to_long_double(source, endp);
1137 @param endp Pointer to end of converted string.
1142 TRIO_ARGS3((string, endp, base),
1144 char **endp,
1150 return strtol(string, endp, base);
1186 @param endp Pointer to end of converted string.
1191 TRIO_ARGS3((string, endp, base),
1193 char **endp,
1199 return strtoul(string, endp, base);