Searched defs:isZero (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/hwui/tests/unit/
H A DFontRendererTests.cpp24 static bool isZero(uint8_t* data, int size) { function
50 EXPECT_FALSE(isZero(result.image, result.width * result.height));
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DHistoryEvaluator.java95 while (!list.isEmpty() && isZero(list.get(0).weight)) {
100 private boolean isZero(float x) { method in class:HistoryEvaluator
/frameworks/base/core/java/android/util/
H A DRational.java197 public boolean isZero() { method in class:Rational
/frameworks/base/libs/hwui/utils/
H A DMathUtils.h33 inline static bool isZero(float value) { function in class:android::uirenderer::MathUtils
82 return isZero(valueA - valueB);
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp49 bool Transform::isZero(float f) { function in class:android::Transform
54 return isZero(fabs(f) - 1.0f);
113 if (isZero(tx) && isZero(ty)) {
145 H.mType |= isZero(w) ? IDENTITY : TRANSLATE;
153 V.mType |= isZero(h) ? IDENTITY : TRANSLATE;
162 R.mType |= isZero(original_w) ? IDENTITY : TRANSLATE;
263 if (isZero(b) && isZero(c)) {
269 } else if (isZero(
[all...]
/frameworks/base/libs/hwui/
H A DMatrix.cpp69 static bool isZero(float f) { function in namespace:android::uirenderer
107 if ((isZero(m00) && isZero(m11) && !isZero(m01) && !isZero(m10)) ||
108 (isZero(m01) && isZero(m10) && !isZero(m00) && !isZero(m11))) {

Completed in 159 milliseconds