Home
last modified time | relevance | path

Searched refs:ys (Results 1 – 15 of 15) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
Dilist_sort.h50 iplist ys; in sort() local
51 ys.splice(ys.begin(), xs, mid_iter, xs.end()); in sort()
55 sort(ys, size - mid, is_less_than); in sort()
60 iterator ys_it = ys.begin(); in sort()
61 iterator ys_end = ys.end(); in sort()
65 xs.splice(xs_it, ys, ys_it++); in sort()
71 xs.splice(xs_end, ys, ys_it, ys_end); in sort()
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
DQuad.java72 List<Float> ys = Arrays.asList(p0.y, p1.y, p2.y, p3.y); in boundingBox() local
74 float y0 = Collections.min(ys); in boundingBox()
76 float y1 = Collections.max(ys); in boundingBox()
86 List<Float> ys = Arrays.asList(p0.y, p1.y, p2.y, p3.y); in getBoundingHeight() local
87 return Collections.max(ys) - Collections.min(ys); in getBoundingHeight()
/frameworks/opt/net/voip/src/jni/rtp/
DEchoSuppressor.cpp128 uint16_t ys[mWindowSize]; in run() local
137 ys[i] = sum >> mShift; in run()
144 ySum += ys[i]; in run()
145 y2Sum += ys[i] * ys[i]; in run()
157 xySum += mXs[i + j] * ys[j]; in run()
/frameworks/rs/support/java/src/android/support/v8/renderscript/
DMatrix3f.java134 float ys = y * s; in loadRotate() local
138 mMat[6] = zx*nc + ys; in loadRotate()
142 mMat[2] = zx*nc - ys; in loadRotate()
DMatrix4f.java177 float ys = y * s; in loadRotate() local
181 mMat[ 8] = zx*nc + ys; in loadRotate()
185 mMat[ 2] = zx*nc - ys; in loadRotate()
/frameworks/base/rs/java/android/renderscript/
DMatrix3f.java131 float ys = y * s; in loadRotate() local
135 mMat[6] = zx*nc + ys; in loadRotate()
139 mMat[2] = zx*nc - ys; in loadRotate()
DMatrix4f.java176 float ys = y * s; in loadRotate() local
180 mMat[ 8] = zx*nc + ys; in loadRotate()
184 mMat[ 2] = zx*nc - ys; in loadRotate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPathInterpolatorBuilder.java114 private PathInterpolator(float[] xs, float[] ys) { in PathInterpolator() argument
116 mY = ys; in PathInterpolator()
/frameworks/rs/
DrsMatrix4x4.cpp225 const float ys = y * s; in loadRotate() local
229 m[ 8] = zx*nc + ys; in loadRotate()
233 m[ 2] = zx*nc - ys; in loadRotate()
/frameworks/base/media/mca/filterfw/native/core/
Dshader_program.cpp515 const float ys = 1.0f / static_cast<float>(tile_y_count_); in DrawTiled() local
527 GetTileCoords(source_coords_, x, y + ys, &s[4], &s[5]); in DrawTiled()
528 GetTileCoords(source_coords_, x + xs, y + ys, &s[6], &s[7]); in DrawTiled()
533 GetTileCoords(target_coords_, x, y + ys, &t[4], &t[5]); in DrawTiled()
534 GetTileCoords(target_coords_, x + xs, y + ys, &t[6], &t[7]); in DrawTiled()
/frameworks/base/libs/hwui/
DMatrix.cpp356 const float ys = y * s; in loadRotate() local
361 data[8] = zx * nc + ys; in loadRotate()
365 data[2] = zx * nc - ys; in loadRotate()
/frameworks/base/opengl/java/android/opengl/
DMatrix.java623 float ys = y * s; in setRotateM() local
627 rm[rmOffset + 8] = zx*nc + ys; in setRotateM()
631 rm[rmOffset + 2] = zx*nc - ys; in setRotateM()
/frameworks/native/libs/math/include/math/
DTMatHelpers.h515 T ys = y * s; in rotate() local
517 r[0][0] = x*x*nc + c; r[1][0] = xy*nc - zs; r[2][0] = zx*nc + ys; in rotate()
519 r[0][2] = zx*nc - ys; r[1][2] = yz*nc + xs; r[2][2] = z*z*nc + c; in rotate()
/frameworks/native/opengl/libagl/
Dmatrix.cpp371 const GLfloat ys = y * s; in rotate() local
373 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys; in rotate()
375 r[ 2] = zx*nc - ys; r[ 6] = yz*nc + xs; r[10] = z*z*nc + c; in rotate()
/frameworks/base/core/java/android/widget/
DGridLayout.java943 int[] ys = mVerticalAxis.locations; in onDebugDraw() local
944 if (ys != null) { in onDebugDraw()
945 for (int i = 0, length = ys.length; i < length; i++) { in onDebugDraw()
946 int y = top + ys[i]; in onDebugDraw()