Lines Matching refs:dstMax

213 void ComputeMulRange::operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& …  in operator ()()  argument
222 float scaledMax = dstMax/scale; in operator ()()
230 scaledMax = dstMax; 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 ()()
268 DE_ASSERT(de::inRange(aMax*bMax, dstMin-eps, dstMax+eps)); in operator ()()
272 void ComputeMulRange::operator() (de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, in… in operator ()() argument
276 aMax = dstMax; in operator ()()
297 void ComputeAddRange::operator() (de::Random& random, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin… in operator ()() argument
305 T rangeLen = dstMax-dstMin; in operator ()()
318 DE_ASSERT(de::inRange(aMin+bMin, dstMin-eps, dstMax+eps)); in operator ()()
319 DE_ASSERT(de::inRange(aMin+bMax, dstMin-eps, dstMax+eps)); in operator ()()
320 DE_ASSERT(de::inRange(aMax+bMin, dstMin-eps, dstMax+eps)); in operator ()()
321 DE_ASSERT(de::inRange(aMax+bMax, dstMin-eps, dstMax+eps)); in operator ()()
347 void ComputeSubRange::operator() (de::Random& random, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin… in operator ()() argument
355 T rangeLen = dstMax-dstMin; in operator ()()
368 DE_ASSERT(de::inRange(aMin-bMin, dstMin-eps, dstMax+eps)); in operator ()()
369 DE_ASSERT(de::inRange(aMin-bMax, dstMin-eps, dstMax+eps)); in operator ()()
370 DE_ASSERT(de::inRange(aMax-bMin, dstMin-eps, dstMax+eps)); in operator ()()
371 DE_ASSERT(de::inRange(aMax-bMax, dstMin-eps, dstMax+eps)); in operator ()()
423 bool dstMax = valueRange.getMax().asBool(); in RelationalOp() local
428 ComputeValueRange()(state.getRandom(), dstMin, dstMax, in RelationalOp()
432 ComputeValueRange()(state.getRandom(), dstMin, dstMax, in RelationalOp()
487 void ComputeLessThanRange::operator () (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax… in operator ()() argument
500 if (dstMin == false && dstMax == true) in operator ()()
508 else if (dstMin == true && dstMax == true) in operator ()()
543 void ComputeLessOrEqualRange::operator () (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& a… in operator ()() argument
556 if (dstMin == false && dstMax == true) in operator ()()
564 else if (dstMin == true && dstMax == true) in operator ()()
622 void computeEqualityValueRange (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMi… in computeEqualityValueRange() argument
624 if (dstMin == false && dstMax == true) in computeEqualityValueRange()
649 void computeEqualityValueRange<true, bool> (de::Random& rnd, bool dstMin, bool dstMax, bool& aMin, … in computeEqualityValueRange() argument
651 if (dstMin == false && dstMax == true) in computeEqualityValueRange()
660 DE_ASSERT(dstMax == false); in computeEqualityValueRange()
670 DE_ASSERT(dstMin == true && dstMax == true); in computeEqualityValueRange()
681 void computeEqualityValueRange<false, bool> (de::Random& rnd, bool dstMin, bool dstMax, bool& aMin,… in computeEqualityValueRange() argument
683 if (dstMin == false && dstMax == true) in computeEqualityValueRange()
684 computeEqualityValueRange<true>(rnd, dstMin, dstMax, aMin, aMax, bMin, bMax); in computeEqualityValueRange()
686 computeEqualityValueRange<true>(rnd, !dstMin, !dstMax, aMin, aMax, bMin, bMax); in computeEqualityValueRange()
721 bool dstMax = valueRange.getMax().asBool(); in EqualityComparisonOp() local
727 computeEqualityValueRange<IsEqual>(state.getRandom(), dstMin, dstMax, in EqualityComparisonOp()
731 computeEqualityValueRange<IsEqual>(state.getRandom(), dstMin, dstMax, in EqualityComparisonOp()
737 computeEqualityValueRange<IsEqual>(state.getRandom(), dstMin, dstMax, in EqualityComparisonOp()