Searched defs:aMax (Results 1 - 11 of 11) sorted by relevance

/external/deqp/framework/randomshaders/
H A DrsgVariableValue.cpp64 float aMax = a.component(ndx).getMax().asFloat(); local
68 if (!CompareOp()(aMin, aMax, bMin, bMax))
79 int aMax = a.component(ndx).getMax().asInt(); local
83 if (!CompareOp()(aMin, aMax, bMin, bMax))
92 bool aMax = a.component(ndx).getMax().asBool(); local
96 if (!CompareOp()(aMin, aMax, bMin, bMax))
114 inline bool operator() (float aMin, float aMax, float bMin, float bMax) const { return (aMin <= bMax && bMin <= aMax); } argument
115 inline bool operator() (int aMin, int aMax, int bMin, int bMax) const { return (aMin <= bMax && bMin <= aMax); } argument
117 operator ()(bool aMin, bool aMax, bool bMin, bool bMax) const argument
125 operator ()(float aMin, float aMax, float bMin, float bMax) const argument
130 operator ()(int aMin, int aMax, int bMin, int bMax) const argument
135 operator ()(bool aMin, bool aMax, bool bMin, bool bMax) const argument
226 float aMax = a.component(ndx).getMax().asFloat(); local
241 int aMax = a.component(ndx).getMax().asInt(); local
254 bool aMax = a.component(ndx).getMax().asBool(); local
[all...]
H A DrsgBinaryOps.cpp213 void ComputeMulRange::operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& aMax, float& bMin, float& bMax) const argument
235 aMax = aMin + subRangeLen;
243 de::inBounds(aMax*(scale-(float)i*scaleStep), dstMin, dstMax))
247 de::inBounds(aMax*(scale+(float)i*scaleStep), dstMin, dstMax))
254 std::swap(aMin, aMax);
257 aMax *= -1.0f;
264 DE_ASSERT(aMin <= aMax && bMin <= bMax);
267 DE_ASSERT(de::inRange(aMax*bMin, dstMin-eps, dstMax+eps));
268 DE_ASSERT(de::inRange(aMax*bMax, dstMin-eps, dstMax+eps));
272 void ComputeMulRange::operator() (de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, in argument
297 operator ()(de::Random& random, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const argument
347 operator ()(de::Random& random, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const argument
487 operator ()(de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const argument
543 operator ()(de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const argument
622 computeEqualityValueRange(de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) argument
649 computeEqualityValueRange(de::Random& rnd, bool dstMin, bool dstMax, bool& aMin, bool& aMax, bool& bMin, bool& bMax) argument
681 computeEqualityValueRange(de::Random& rnd, bool dstMin, bool dstMax, bool& aMin, bool& aMax, bool& bMin, bool& bMax) argument
[all...]
H A DrsgBinaryOps.hpp80 void operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& aMax, float& bMin, float& bMax) const;
81 void operator() (de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, int& bMin, int& bMax) const;
104 void operator() (de::Random& rnd, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
126 void operator() (de::Random& rnd, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
164 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
188 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
212 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const argument
214 ComputeLessThanRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax);
239 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const argument
241 ComputeLessOrEqualRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax);
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dd3basics.c954 Addr aMin, aMax; local
974 aMax = ML_(read_Addr)(p); p += sizeof(Addr);
978 nGuards, aMin,aMax);
981 vg_assert(aMax == ~(Addr)0);
992 if (aMin <= regs->ip && regs->ip <= aMax) {
1025 Addr aMin, aMax; local
1051 aMax = ML_(read_Addr)(p); p += sizeof(Addr);
1055 nGuards, aMin,aMax);
1201 Addr aMin, aMax; local
1214 aMax
[all...]
H A Dstorage.c1004 if ((*key) > elem->aMax) return 1;
1017 VG_(printf)(" %#lx .. %#lx: %ld vars\n", range->aMin, range->aMax,
1023 /* Add the variable 'var' to 'scope' for the address range [aMin,aMax]
1024 (inclusive of aMin and aMax). Split existing ranges as required if
1025 aMin or aMax or both don't match existing range boundaries, and add
1032 Addr aMax,
1042 vg_assert(aMin <= aMax);
1044 if (0) VG_(printf)("add_var_to_arange: %#lx .. %#lx\n", aMin, aMax);
1055 vg_assert(first->aMin <= first->aMax);
1056 vg_assert(first->aMin <= aMin && aMin <= first->aMax);
1029 add_var_to_arange( OSet* scope, Addr aMin, Addr aMax, DiVariable* var ) argument
1172 addVar( struct _DebugInfo* di, Int level, Addr aMin, Addr aMax, const HChar* name, UWord typeR, const GExpr* gexpr, const GExpr* fbGX, UInt fndn_ix, Int lineNo, Bool show ) argument
[all...]
H A Dpriv_storage.h492 Addr aMax; member in struct:__anon19368
1078 Addr aMax,
H A Dreaddwarf3.c564 (Addr aMin; Addr aMax; UShort nbytes; ..bytes..; UChar isEnd)
567 valid when aMin <= pc <= aMax (possibly after suitable biasing).
574 biasMe is 1 if the aMin/aMax fields need this DebugInfo's
579 that aMax is 1 less than the corresponding value in a DWARF3
580 location list. Zero length ranges, with aMax == aMin-1, are not
608 /* t-bias aMax */
629 + sizeof(UWord) /*aMin*/ + sizeof(UWord) /*aMax*/
641 p = ML_(write_Addr)(p, ~0); /*aMax*/
767 /* Denotes an address range. Both aMin and aMax are included in the
771 struct { Addr aMin; Addr aMax; } member in struct:__anon19402
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DLocaleMatcher.java635 public double match(ULocale a, ULocale aMax, ULocale b, ULocale bMax) { argument
637 diff += languageScores.getScore(aMax, a.getLanguage(), aMax.getLanguage(), bMax, b.getLanguage(), bMax.getLanguage());
641 diff += scriptScores.getScore(aMax, a.getScript(), aMax.getScript(), bMax, b.getScript(), bMax.getScript());
642 diff += regionScores.getScore(aMax, a.getCountry(), aMax.getCountry(), bMax, b.getCountry(), bMax.getCountry());
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocaleMatcher.java642 public double match(ULocale a, ULocale aMax, ULocale b, ULocale bMax) { argument
644 diff += languageScores.getScore(aMax, a.getLanguage(), aMax.getLanguage(), bMax, b.getLanguage(), bMax.getLanguage());
648 diff += scriptScores.getScore(aMax, a.getScript(), aMax.getScript(), bMax, b.getScript(), bMax.getScript());
649 diff += regionScores.getScore(aMax, a.getCountry(), aMax.getCountry(), bMax, b.getCountry(), bMax.getCountry());
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp1019 int aMax = de::max(a.getAlpha(), b.getAlpha()); local
1024 rangeDiff(p.getAlpha(), aMin, aMax));
/external/libpng/contrib/libtests/
H A Dpngvalid.c5672 unsigned int bMax, unsigned int aMax)
5677 this->alphaf = this->alpha / (double)aMax;
5691 if (this->alpha < aMax)
5671 image_pixel_setf(image_pixel *this, unsigned int rMax, unsigned int gMax, unsigned int bMax, unsigned int aMax) argument

Completed in 373 milliseconds