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

/frameworks/base/libs/hwui/
H A DTexture.h75 void setFilterMinMag(GLenum min, GLenum mag, bool bindTexture = false, bool force = false, argument
78 if (firstFilter || force || min != minFilter || mag != magFilter) {
82 magFilter = mag;
91 glTexParameteri(renderTarget, GL_TEXTURE_MAG_FILTER, mag);
H A DSkiaShader.cpp172 const float mag = vec.length(); local
173 const float inv = mag ? 1.0f / mag : 0;
/frameworks/base/core/java/android/util/
H A DMathUtils.java107 public static float mag(float a, float b) { method in class:MathUtils
111 public static float mag(float a, float b, float c) { method in class:MathUtils
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBeanBag.java82 static float mag(float x, float y) { method in class:BeanBag.Board
238 return mag(dx, dy) - r - other.r;
258 float a = randsign() * clamp(mag(vx, vy) * 0.33f, 0, 1080f);
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c620 GLfloat mag; local
628 mag = (float)sqrt(z[0] * z[0] + z[1] * z[1] + z[2] * z[2]);
629 if (mag) { /* mpichler, 19950515 */
630 z[0] /= mag;
631 z[1] /= mag;
632 z[2] /= mag;
655 mag = (float)sqrt(x[0] * x[0] + x[1] * x[1] + x[2] * x[2]);
656 if (mag) {
657 x[0] /= mag;
658 x[1] /= mag;
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DSlidingPaneLayout.java917 private void dimChildView(View v, float mag, int fadeColor) { argument
920 if (mag > 0 && fadeColor != 0) {
922 int imag = (int) (baseAlpha * mag);

Completed in 288 milliseconds