Home
last modified time | relevance | path

Searched refs:dstMin (Results 1 – 3 of 3) sorted by relevance

/external/deqp/framework/randomshaders/
DrsgBinaryOps.cpp213 void ComputeMulRange::operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& … in operator ()() argument
221 float scaledMin = dstMin/scale; in operator ()()
229 scaledMin = dstMin; in operator ()()
242 if (de::inBounds(aMin*(scale-(float)i*scaleStep), dstMin, dstMax) && in operator ()()
243 de::inBounds(aMax*(scale-(float)i*scaleStep), dstMin, dstMax)) in operator ()()
246 if (de::inBounds(aMin*(scale+(float)i*scaleStep), dstMin, dstMax) && in operator ()()
247 de::inBounds(aMax*(scale+(float)i*scaleStep), dstMin, dstMax)) in operator ()()
265 DE_ASSERT(de::inRange(aMin*bMin, dstMin-eps, dstMax+eps)); in operator ()()
266 DE_ASSERT(de::inRange(aMin*bMax, dstMin-eps, dstMax+eps)); in operator ()()
267 DE_ASSERT(de::inRange(aMax*bMin, dstMin-eps, dstMax+eps)); in operator ()()
[all …]
DrsgBinaryOps.hpp80 …void operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& aMax, float& bMi…
81 …void operator() (de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, int& bMin, int& bM…
104 void operator() (de::Random& rnd, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
126 void operator() (de::Random& rnd, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
164 …void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) co…
188 …void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) co…
212 …void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) co… in operator ()()
214 ComputeLessThanRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax); in operator ()()
239 …void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) co… in operator ()()
241 ComputeLessOrEqualRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax); in operator ()()
DrsgExpression.cpp543 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax) in convertValueRange() argument
545 dstMin = convert<SrcType, DstType>(srcMin); in convertValueRange()
550 inline void convertValueRange<float, int> (float srcMin, float srcMax, int& dstMin, int& dstMax) in convertValueRange() argument
553 dstMin = Scalar::min<int>().as<int>(); in convertValueRange()
555 dstMin = (int)deFloatCeil(srcMin); in convertValueRange()
564 inline void convertValueRange<float, bool> (float srcMin, float srcMax, bool& dstMin, bool& dstMax) in convertValueRange() argument
566 dstMin = srcMin > 0.0f; in convertValueRange()