• Home
  • Raw
  • Download

Lines Matching refs:bMax

66 					float bMax = b.component(ndx).getMax().asFloat();  in compareValueRangesAllTrue()  local
68 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
81 int bMax = b.component(ndx).getMax().asInt(); in compareValueRangesAllTrue() local
83 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
94 bool bMax = b.component(ndx).getMax().asBool(); in compareValueRangesAllTrue() local
96 if (!CompareOp()(aMin, aMax, bMin, bMax)) in compareValueRangesAllTrue()
114 …bool operator() (float aMin, float aMax, float bMin, float bMax) const { return (aMin <= bMax && b… 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 ()()
228 float bMax = b.component(ndx).getMax().asFloat(); in computeIntersection() local
231 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
243 int bMax = b.component(ndx).getMax().asInt(); in computeIntersection() local
246 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
256 bool bMax = b.component(ndx).getMax().asBool(); in computeIntersection() local
259 dst.component(ndx).getMax() = aMax && bMax; in computeIntersection()