Lines Matching refs:tail
51 char *tail; in test_strtod() local
55 v = strtod(pd->string, &tail); in test_strtod()
56 if (tail - pd->string) { in test_strtod()
71 test_iok(tail - pd->string, pd->endscan & ENDSCAN_MASK); in test_strtod()
77 char *tail; in test_strtof() local
81 v = strtof(pd->string, &tail); in test_strtof()
82 if (tail - pd->string) { in test_strtof()
92 test_iok(tail - pd->string, pd->endscan & ENDSCAN_MASK); in test_strtof()
109 char *tail; in test_strtold() local
113 v = strtold(pd->string, &tail); in test_strtold()
114 if (tail - pd->string) { in test_strtold()
127 test_iok(tail - pd->string, pd->endscan & ENDSCAN_MASK); in test_strtold()