• Home
  • Raw
  • Download

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()
114 …ine 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 ()()
226 float aMax = a.component(ndx).getMax().asFloat(); in computeIntersection() local
231 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
241 int aMax = a.component(ndx).getMax().asInt(); in computeIntersection() local
246 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
254 bool aMax = a.component(ndx).getMax().asBool(); in computeIntersection() local
259 dst.component(ndx).getMax() = aMax && bMax; in computeIntersection()