Lines Matching refs:bMin
65 float bMin = b.component(ndx).getMin().asFloat(); in compareValueRangesAllTrue() local
68 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
80 int bMin = b.component(ndx).getMin().asInt(); in compareValueRangesAllTrue() local
83 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
93 bool bMin = b.component(ndx).getMin().asBool(); in compareValueRangesAllTrue() local
96 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
114 …e bool operator() (float aMin, float aMax, float bMin, float bMax) const { return (aMin <= bMax &&… in operator ()()
115 …inline bool operator() (int aMin, int aMax, int bMin, int bMax) const { return (aMin <= bMax && … in operator ()()
117 inline bool operator() (bool aMin, bool aMax, bool bMin, bool bMax) const in operator ()()
119 return CompareIntersection()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax)); in operator ()()
125 inline bool operator() (float aMin, float aMax, float bMin, float bMax) const in operator ()()
127 return de::inRange(aMin, bMin, bMax) && de::inRange(aMax, bMin, bMax); in operator ()()
130 inline bool operator() (int aMin, int aMax, int bMin, int bMax) const in operator ()()
132 return de::inRange(aMin, bMin, bMax) && de::inRange(aMax, bMin, bMax); in operator ()()
135 inline bool operator() (bool aMin, bool aMax, bool bMin, bool bMax) const in operator ()()
137 return CompareIsSubsetOf()(toInt(aMin), toInt(aMax), toInt(bMin), toInt(bMax)); in operator ()()
227 float bMin = b.component(ndx).getMin().asFloat(); in computeIntersection() local
230 dst.component(ndx).getMin() = de::max(aMin, bMin); in computeIntersection()
242 int bMin = b.component(ndx).getMin().asInt(); in computeIntersection() local
245 dst.component(ndx).getMin() = de::max(aMin, bMin); in computeIntersection()
255 bool bMin = b.component(ndx).getMin().asBool(); in computeIntersection() local
258 dst.component(ndx).getMin() = aMin || bMin; in computeIntersection()