Searched refs:StrtodChar (Results 1 - 1 of 1) sorted by relevance

/external/v8/test/cctest/
H A Dtest-strtod.cc20 static double StrtodChar(const char* str, int exponent) { function
156 CHECK_EQ(0.0, StrtodChar("0", 12345));
157 CHECK_EQ(0.0, StrtodChar("", 1324));
158 CHECK_EQ(0.0, StrtodChar("000000000", 123));
159 CHECK_EQ(0.0, StrtodChar("2", -324));
160 CHECK_EQ(4e-324, StrtodChar("3", -324));
162 // CHECK_EQ(1e-325, StrtodChar("1", -325))), but then Gcc complains that
164 CHECK_EQ(0.0, StrtodChar("1", -325));
165 CHECK_EQ(0.0, StrtodChar("1", -325));
166 CHECK_EQ(0.0, StrtodChar("2000
[all...]

Completed in 174 milliseconds