OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:confvalue
(Results
1 - 2
of
2
) sorted by null
/frameworks/native/opengl/libagl/
egl.cpp
776
bool (*match)(GLint reqValue, GLint
confValue
);
777
static bool atLeast(GLint reqValue, GLint
confValue
) {
778
return (reqValue == EGL_DONT_CARE) || (
confValue
>= reqValue);
780
static bool exact(GLint reqValue, GLint
confValue
) {
781
return (reqValue == EGL_DONT_CARE) || (
confValue
== reqValue);
783
static bool mask(GLint reqValue, GLint
confValue
) {
784
return (
confValue
& reqValue) == reqValue;
786
static bool ignore(GLint reqValue, GLint
confValue
) {
[
all
...]
/external/srec/srec/Recognizer/src/
RecognizerImpl.c
[
all
...]
Completed in 62 milliseconds