Lines Matching refs:getMax
64 float aMax = a.component(ndx).getMax().asFloat(); in compareValueRangesAllTrue()
66 float bMax = b.component(ndx).getMax().asFloat(); in compareValueRangesAllTrue()
79 int aMax = a.component(ndx).getMax().asInt(); in compareValueRangesAllTrue()
81 int bMax = b.component(ndx).getMax().asInt(); in compareValueRangesAllTrue()
92 bool aMax = a.component(ndx).getMax().asBool(); in compareValueRangesAllTrue()
94 bool bMax = b.component(ndx).getMax().asBool(); in compareValueRangesAllTrue()
171 getMax() = maxVal.value(); in ValueRange()
180 getMax() = ConstValueAccess(type, maxVal).value(); in ValueRange()
189 getMax() = other.getMax().value(); in ValueRange()
226 float aMax = a.component(ndx).getMax().asFloat(); in computeIntersection()
228 float bMax = b.component(ndx).getMax().asFloat(); in computeIntersection()
231 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
241 int aMax = a.component(ndx).getMax().asInt(); in computeIntersection()
243 int bMax = b.component(ndx).getMax().asInt(); in computeIntersection()
246 dst.component(ndx).getMax() = de::min(aMax, bMax); in computeIntersection()
254 bool aMax = a.component(ndx).getMax().asBool(); in computeIntersection()
256 bool bMax = b.component(ndx).getMax().asBool(); in computeIntersection()
259 dst.component(ndx).getMax() = aMax && bMax; in computeIntersection()