Searched refs:dstMin (Results 1 – 3 of 3) sorted by relevance
/external/deqp/framework/randomshaders/ |
D | rsgBinaryOps.cpp | 463 void ComputeMulRange::operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& … in operator ()() argument 471 float scaledMin = dstMin/scale; in operator ()() 479 scaledMin = dstMin; in operator ()() 492 if (de::inBounds(aMin*(scale-(float)i*scaleStep), dstMin, dstMax) && in operator ()() 493 de::inBounds(aMax*(scale-(float)i*scaleStep), dstMin, dstMax)) in operator ()() 496 if (de::inBounds(aMin*(scale+(float)i*scaleStep), dstMin, dstMax) && in operator ()() 497 de::inBounds(aMax*(scale+(float)i*scaleStep), dstMin, dstMax)) in operator ()() 515 DE_ASSERT(de::inRange(aMin*bMin, dstMin-eps, dstMax+eps)); in operator ()() 516 DE_ASSERT(de::inRange(aMin*bMax, dstMin-eps, dstMax+eps)); in operator ()() 517 DE_ASSERT(de::inRange(aMax*bMin, dstMin-eps, dstMax+eps)); in operator ()() [all …]
|
D | rsgBinaryOps.hpp | 80 …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 ()()
|
D | rsgExpression.cpp | 568 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax) in convertValueRange() argument 570 dstMin = convert<SrcType, DstType>(srcMin); in convertValueRange() 575 inline void convertValueRange<float, int> (float srcMin, float srcMax, int& dstMin, int& dstMax) in convertValueRange() argument 578 dstMin = Scalar::min<int>().as<int>(); in convertValueRange() 580 dstMin = (int)deFloatCeil(srcMin); in convertValueRange() 589 inline void convertValueRange<float, bool> (float srcMin, float srcMax, bool& dstMin, bool& dstMax) in convertValueRange() argument 591 dstMin = srcMin > 0.0f; in convertValueRange()
|