Home
last modified time | relevance | path

Searched refs:outMax (Results 1 – 2 of 2) sorted by relevance

/external/deqp/framework/randomshaders/
DrsgBuiltinFunctions.hpp147 …inline float operator() (float outMin, float outMax) const { return C::getCompWeight(outMin, outMa… in operator ()()
153 …void operator() (float outMin, float outMax, float& inMin, float& inMax) const { C::computeValueRa… in operator ()()
182 static inline float getCompWeight (float outMin, float outMax) in getCompWeight() argument
184 if (Scalar::min<float>() == outMin || Scalar::max<float>() == outMax) in getCompWeight()
189 if (!C::transformValueRange(outMin, outMax, inMin, inMax)) in getCompWeight()
196 if (outMin == outMax) in getCompWeight()
201 float valRangeLen = outMax - outMin; in getCompWeight()
206 static inline void computeValueRange (float outMin, float outMax, float& inMin, float& inMax) in computeValueRange() argument
208 DE_VERIFY(C::transformValueRange(outMin, outMax, inMin, inMax)); in computeValueRange()
230 static inline bool transformValueRange (float outMin, float outMax, float& inMin, float& inMax) in transformValueRange() argument
[all …]
/external/xz-java/src/org/tukaani/xz/lz/
DLZDecoder.java52 public void setLimit(int outMax) { in setLimit() argument
53 if (bufSize - pos <= outMax) in setLimit()
56 limit = pos + outMax; in setLimit()