Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgBinaryOps.cpp463 void ComputeMulRange::operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& aMax, float& bMin, float& bMax) const 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 in operator ()()
522 operator ()(de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, int& bMin, int& bMax) const operator ()() argument
547 operator ()(de::Random& random, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const operator ()() argument
597 operator ()(de::Random& random, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const operator ()() argument
672 bool dstMin = valueRange.getMin().asBool(); RelationalOp() local
737 operator ()(de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const operator ()() argument
793 operator ()(de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const operator ()() argument
872 computeEqualityValueRange(de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) computeEqualityValueRange() argument
899 computeEqualityValueRange(de::Random& rnd, bool dstMin, bool dstMax, bool& aMin, bool& aMax, bool& bMin, bool& bMax) computeEqualityValueRange() argument
931 computeEqualityValueRange(de::Random& rnd, bool dstMin, bool dstMax, bool& aMin, bool& aMax, bool& bMin, bool& bMax) computeEqualityValueRange() argument
970 bool dstMin = valueRange.getMin().asBool(); EqualityComparisonOp() local
[all...]
H A DrsgBinaryOps.hpp80 void operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& aMax, float& bMin, float& bMax) const;
81 void operator() (de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, int& bMin, int& bMax) const;
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) const;
188 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
212 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const 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) const in operator ()()
241 ComputeLessOrEqualRange()(rnd, dstMin, dstMa in operator ()()
[all...]
H A DrsgExpression.cpp568 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()

Completed in 5 milliseconds