HomeSort by: relevance | last modified time | path
    Searched defs:inf_strings (Results 1 - 1 of 1) sorted by relevancy

  /src/tests/lib/libc/stdlib/
t_strtod.c 47 static const char * const inf_strings[] = variable in typeref:typename:const char * const[]
149 for (size_t i = 0; i < __arraycount(inf_strings); i++) {
150 volatile double d = strtod(inf_strings[i], NULL);
151 ATF_CHECK_MSG(isinf(d), "inf_strings[%zu]=\"%s\" d=%g=%a",
152 i, inf_strings[i], d, d);
168 for (size_t i = 0; i < __arraycount(inf_strings); i++) {
169 volatile float f = strtof(inf_strings[i], NULL);
170 ATF_CHECK_MSG(isinf(f), "inf_strings[%zu]=\"%s\" f=%g=%a",
171 i, inf_strings[i], f, f);
172 ATF_CHECK_MSG(isinff(f), "inf_strings[%zu]=\"%s\" f=%g=%a"
    [all...]

Completed in 13 milliseconds