/aosp_15_r20/external/deqp/framework/randomshaders/ |
H A D | rsgVariableValue.cpp | 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() 117 inline bool operator()(float aMin, float aMax, float bMin, float bMax) const in operator ()() 119 return (aMin <= bMax && bMin <= aMax); in operator ()() 121 inline bool operator()(int aMin, int aMax, int bMin, int bMax) const in operator ()() 123 return (aMin <= bMax && bMin <= aMax); in operator ()() [all …]
|
H A D | rsgBinaryOps.cpp | 470 …nge::operator()(de::Random &rnd, float dstMin, float dstMax, float &aMin, float &aMax, float &bMin, in operator ()() argument 493 aMax = aMin + subRangeLen; in operator ()() 501 de::inBounds(aMax * (scale - (float)i * scaleStep), dstMin, dstMax)) in operator ()() 505 de::inBounds(aMax * (scale + (float)i * scaleStep), dstMin, dstMax)) in operator ()() 512 std::swap(aMin, aMax); in operator ()() 515 aMax *= -1.0f; in operator ()() 522 DE_ASSERT(aMin <= aMax && bMin <= bMax); in operator ()() 525 DE_ASSERT(de::inRange(aMax * bMin, dstMin - eps, dstMax + eps)); in operator ()() 526 DE_ASSERT(de::inRange(aMax * bMax, dstMin - eps, dstMax + eps)); in operator ()() 530 void ComputeMulRange::operator()(de::Random &rnd, int dstMin, int dstMax, int &aMin, int &aMax, int… in operator ()() argument [all …]
|
H A D | rsgBinaryOps.hpp | 83 …void operator()(de::Random &rnd, float dstMin, float dstMax, float &aMin, float &aMax, float &bMin, 85 …void operator()(de::Random &rnd, int dstMin, int dstMax, int &aMin, int &aMax, int &bMin, int &bMa… 117 void operator()(de::Random &rnd, T dstMin, T dstMax, T &aMin, T &aMax, T &bMin, T &bMax) const; 145 void operator()(de::Random &rnd, T dstMin, T dstMax, T &aMin, T &aMax, T &bMin, T &bMax) const; 189 …void operator()(de::Random &rnd, bool dstMin, bool dstMax, T &aMin, T &aMax, T &bMin, T &bMax) con… 219 …void operator()(de::Random &rnd, bool dstMin, bool dstMax, T &aMin, T &aMax, T &bMin, T &bMax) con… 249 …void operator()(de::Random &rnd, bool dstMin, bool dstMax, T &aMin, T &aMax, T &bMin, T &bMax) con… in operator ()() 251 ComputeLessThanRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax); in operator ()() 282 …void operator()(de::Random &rnd, bool dstMin, bool dstMax, T &aMin, T &aMax, T &bMin, T &bMax) con… in operator ()() 284 ComputeLessOrEqualRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax); in operator ()()
|
/aosp_15_r20/external/openthread/src/core/common/ |
H A D | random.cpp | 132 uint8_t GetUint8InRange(uint8_t aMin, uint8_t aMax) in GetUint8InRange() argument 134 OT_ASSERT(aMax > aMin); in GetUint8InRange() 136 return (aMin + (GetUint8() % (aMax - aMin))); in GetUint8InRange() 139 uint16_t GetUint16InRange(uint16_t aMin, uint16_t aMax) in GetUint16InRange() argument 141 OT_ASSERT(aMax > aMin); in GetUint16InRange() 142 return (aMin + (GetUint16() % (aMax - aMin))); in GetUint16InRange() 145 uint32_t GetUint32InRange(uint32_t aMin, uint32_t aMax) in GetUint32InRange() argument 147 OT_ASSERT(aMax > aMin); in GetUint32InRange() 148 return (aMin + (GetUint32() % (aMax - aMin))); in GetUint32InRange()
|
H A D | random.hpp | 141 uint8_t GetUint8InRange(uint8_t aMin, uint8_t aMax); 154 uint16_t GetUint16InRange(uint16_t aMin, uint16_t aMax); 167 uint32_t GetUint32InRange(uint32_t aMin, uint32_t aMax);
|
H A D | num_utils.hpp | 86 template <typename Type> Type Clamp(Type aValue, Type aMin, Type aMax) in Clamp() argument 90 return Min(value, aMax); in Clamp()
|
/aosp_15_r20/external/openthread/src/core/api/ |
H A D | random_noncrypto_api.cpp | 46 uint8_t otRandomNonCryptoGetUint8InRange(uint8_t aMin, uint8_t aMax) in otRandomNonCryptoGetUint8InRange() argument 48 return Random::NonCrypto::GetUint8InRange(aMin, aMax); in otRandomNonCryptoGetUint8InRange() 51 uint16_t otRandomNonCryptoGetUint16InRange(uint16_t aMin, uint16_t aMax) in otRandomNonCryptoGetUint16InRange() argument 53 return Random::NonCrypto::GetUint16InRange(aMin, aMax); in otRandomNonCryptoGetUint16InRange() 56 uint32_t otRandomNonCryptoGetUint32InRange(uint32_t aMin, uint32_t aMax) in otRandomNonCryptoGetUint32InRange() argument 58 return Random::NonCrypto::GetUint32InRange(aMin, aMax); in otRandomNonCryptoGetUint32InRange()
|
/aosp_15_r20/external/openthread/include/openthread/ |
H A D | random_noncrypto.h | 86 uint8_t otRandomNonCryptoGetUint8InRange(uint8_t aMin, uint8_t aMax); 98 uint16_t otRandomNonCryptoGetUint16InRange(uint16_t aMin, uint16_t aMax); 111 uint32_t otRandomNonCryptoGetUint32InRange(uint32_t aMin, uint32_t aMax);
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/com/ibm/icu/util/ |
H A D | LocaleMatcher.java | 658 public double match(ULocale a, ULocale aMax, ULocale b, ULocale bMax) { in match() argument 662 aMax, in match() 664 aMax.getLanguage(), in match() 673 aMax, in match() 675 aMax.getScript(), in match() 681 aMax, in match() 683 aMax.getCountry(), in match()
|
/aosp_15_r20/frameworks/base/core/java/android/text/style/ |
H A D | SpanUtils.java | 284 private static boolean hasIntersection(int aMin, int aMax, int bMin, int bMax) { in hasIntersection() argument 285 return aMin < bMax && bMin < aMax; in hasIntersection() 288 private static long intersection(int aMin, int aMax, int bMin, int bMax) { in intersection() argument 289 return pack(Math.max(aMin, bMin), Math.min(aMax, bMax)); in intersection()
|
/aosp_15_r20/external/skia/src/core/ |
H A D | SkBlitter_ARGB32.cpp | 195 __m128i aMax = _mm_max_epu8(_mm_slli_epi32(r, SK_A32_SHIFT - SK_R32_SHIFT), in blend_lcd16_sse2() local 204 a = _mm_or_si128(_mm_and_si128(a, aMin), _mm_andnot_si128(a, aMax)); in blend_lcd16_sse2() 692 __m256i aMax = __lasx_xvmax_b(__lasx_xvslli_w(r, SK_A32_SHIFT - SK_R32_SHIFT), in blend_lcd16_lasx() local 702 a = __lasx_xvor_v(__lasx_xvand_v(a, aMin), __lasx_xvandn_v(a, aMax)); in blend_lcd16_lasx() 1069 __m128i aMax = __lsx_vmax_b(__lsx_vslli_w(r, SK_A32_SHIFT - SK_R32_SHIFT), in blend_lcd16_lsx() local 1079 a = __lsx_vor_v(__lsx_vand_v(a, aMin), __lsx_vandn_v(a, aMax)); in blend_lcd16_lsx()
|
/aosp_15_r20/external/deqp/framework/common/ |
H A D | tcuAstcUtil.cpp | 2137 const int aMax = (1 << layout.aNumBits) - 1; in writeBlockMode() local 2139 const int variableOffsetsMax[3] = {0, aMax, bMax}; in writeBlockMode()
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/javac/ |
D | framework.jar16 | META-INF/
META-INF/MANIFEST.MF
android/
android/text/
android/ ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/repackaged-jarjar/javac-16/ |
D | framework.jar | android/util/NoSuchPropertyException.class
NoSuchPropertyException.java
package android.util
public android.util. ... |
/aosp_15_r20/external/libpng/contrib/libtests/ |
H A D | pngvalid.c | 6058 unsigned int bMax, unsigned int aMax) in image_pixel_setf() argument 6063 this->alphaf = this->alpha / (double)aMax; in image_pixel_setf() 6077 if (this->alpha < aMax) in image_pixel_setf()
|
/aosp_15_r20/external/deqp/framework/opengl/ |
H A D | gluTextureTestUtil.cpp | 1132 int aMax = de::max(a.getAlpha(), b.getAlpha()); in rangeDiff() local 1135 rangeDiff(p.getBlue(), bMin, bMax), rangeDiff(p.getAlpha(), aMin, aMax)); in rangeDiff()
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/combined/ |
D | framework.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/Manifest$permission. ... |
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/framework-minus-apex_intermediates/ |
D | classes.jar | res/vendor.mime.types
res/debian.mime.types
res/android.mime ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/jarjar/ |
D | framework.jar | res/vendor.mime.types
res/debian.mime.types
res/android.mime ... |
/aosp_15_r20/prebuilts/misc/common/robolectric/android-all/ |
HD | android-all-7.0.0_r1-robolectric-r1.jar | META-INF/
META-INF/MANIFEST.MF
assets/
assets/images/
assets/ ... |
HD | android-all-6.0.1_r3-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
sun/
sun/misc/
sun/ ... |
HD | android-all-7.1.0_r7-robolectric-r1.jar | META-INF/
META-INF/MANIFEST.MF
assets/
assets/images/
assets/ ... |
HD | android-all-7.1.0_r7-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/microedition/
javax/ ... |
HD | android-all-6.0.1_r3-robolectric-r1.jar | META-INF/
META-INF/MANIFEST.MF
assets/
assets/images/
assets/ ... |
HD | android-all-6.0.0_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |