Home
last modified time | relevance | path

Searched refs:ymax (Results 1 – 2 of 2) sorted by relevance

/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
DFindRegion.java195 int ymax = (int) (mRoiBounds.bottom + mRoiBounds.height() * 2); in calcSearchRange() local
197 ymax = Math.min(imgHeight, ymax); in calcSearchRange()
199 ymax = Math.max(0, ymax); in calcSearchRange()
200 return new Rect(xmin, ymin, xmax, ymax); in calcSearchRange()
/frameworks/native/opengl/tests/angeles/
Ddemo.c505 GLfloat xmin, xmax, ymin, ymax; in gluPerspective() local
507 ymax = zNear * (GLfloat)tan(fovy * PI / 360); in gluPerspective()
508 ymin = -ymax; in gluPerspective()
510 xmax = ymax * aspect; in gluPerspective()
513 (GLfixed)(ymin * 65536), (GLfixed)(ymax * 65536), in gluPerspective()