Searched refs:reqValue (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/opengl/libagl/
H A Degl.cpp786 bool (*match)(GLint reqValue, GLint confValue);
787 static bool atLeast(GLint reqValue, GLint confValue) { argument
788 return (reqValue == EGL_DONT_CARE) || (confValue >= reqValue);
790 static bool exact(GLint reqValue, GLint confValue) { argument
791 return (reqValue == EGL_DONT_CARE) || (confValue == reqValue);
793 static bool mask(GLint reqValue, GLint confValue) { argument
794 return (confValue & reqValue) == reqValue;
796 ignore(GLint reqValue, GLint confValue) argument
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1806 int reqValue = (requested->density?requested->density:160); local
1807 if (reqValue >= h) {
1811 if (l >= reqValue) {
1816 if (((2 * l) - reqValue) * h > reqValue * reqValue) {

Completed in 135 milliseconds