Lines Matching defs:log
1913 // these have the same names as ordinary mathematical operations (sin, log
2177 // OpenGL API Issue #57 "Clarifying the required ULP precision for GLSL built-in log()". Agreed that
2194 class Log : public LogFunc { public: Log (void) : LogFunc("log", deLog) {} };
2197 ExprP<float> log (const ExprP<float>& x) { return app<Log>(x); }
2530 DEFINE_DERIVED_FLOAT1(ASinh, asinh, x, log(x + sqrt(x * x + constant(1.0f))))
2531 DEFINE_DERIVED_FLOAT1(ACosh, acosh, x, log(x + sqrt(alternatives((x + constant(1.0f)) * (x - constant(1.0f)),
2533 DEFINE_DERIVED_FLOAT1(ATanh, atanh, x, constant(0.5f) * log((constant(1.0f) + x) /
4587 TestLog& log (void) const { return m_testCtx.getLog(); }
4659 log() << TestLog::Message << "Statement: " << stmt << TestLog::EndMessage;
4670 log() << TestLog::Message << "Reference definitions:\n" << oss.str()
4731 executor->log(log());
4825 MessageBuilder builder = log().message();
4875 log() << TestLog::Message << "(Skipped " << (numErrors - maxMsgs) << " messages.)"
4881 log() << TestLog::Message << "All " << numValues << " inputs passed."
4886 log() << TestLog::Message << numErrors << "/" << numValues << " inputs failed or had quality warnings."