Lines Matching refs:aMax
64 float aMax = a.component(ndx).getMax().asFloat(); in compareValueRangesAllTrue() local
68 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
79 int aMax = a.component(ndx).getMax().asInt(); in compareValueRangesAllTrue() local
83 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
92 bool aMax = a.component(ndx).getMax().asBool(); in compareValueRangesAllTrue() local
96 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
117 inline bool operator()(float aMin, float aMax, float bMin, float bMax) const in operator ()()
119 return (aMin <= bMax && bMin <= aMax); in operator ()()
121 inline bool operator()(int aMin, int aMax, int bMin, int bMax) const in operator ()()
123 return (aMin <= bMax && bMin <= aMax); in operator ()()
126 inline bool operator()(bool aMin, bool aMax, bool bMin, bool bMax) const in operator ()()
128 return CompareIntersection()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax)); in operator ()()
134 inline bool operator()(float aMin, float aMax, float bMin, float bMax) const in operator ()()
136 return de::inRange(aMin, bMin, bMax) && de::inRange(aMax, bMin, bMax); in operator ()()
139 inline bool operator()(int aMin, int aMax, int bMin, int bMax) const in operator ()()
141 return de::inRange(aMin, bMin, bMax) && de::inRange(aMax, bMin, bMax); in operator ()()
144 inline bool operator()(bool aMin, bool aMax, bool bMin, bool bMax) const in operator ()()
146 return CompareIsSubsetOf()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax)); in operator ()()
236 float aMax = a.component(ndx).getMax().asFloat(); in computeIntersection() local
241 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
251 int aMax = a.component(ndx).getMax().asInt(); in computeIntersection() local
256 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
264 bool aMax = a.component(ndx).getMax().asBool(); in computeIntersection() local
269 dst.component(ndx).getMax() = aMax && bMax; in computeIntersection()