Lines Matching refs:oss
245 std::ostringstream oss; in floatToHex() local
247 oss << (x < 0 ? "-" : "") in floatToHex()
252 return oss.str(); in floatToHex()
325 ostringstream oss; in check() local
326 oss << expr << " returned " << result << ", expected " << reference; in check()
327 TCU_FAIL(oss.str().c_str()); in check()
333 ostringstream oss; in testULP() local
335 oss << "ulp(" << arg << ")"; in testULP()
336 check(oss.str(), m_fmt->ulp(arg), ref); in testULP()
342 ostringstream oss; in testRound() local
343 oss << "round(" << arg << ", false)"; in testRound()
344 check(oss.str(), m_fmt->round(arg, false), refDown); in testRound()
347 ostringstream oss; in testRound() local
348 oss << "round(" << arg << ", true)"; in testRound()
349 check(oss.str(), m_fmt->round(arg, true), refUp); in testRound()