| t_strtod.c | 47 static const char * const inf_strings[] = variable 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); local 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); local 172 ATF_CHECK_MSG(isinff(f), "inf_strings[%zu]=\"%s\" f=%g=%a" 173 i, inf_strings[i], f, f); local 192 i, inf_strings[i], ld, ld); local [all...] |