Home
last modified time | relevance | path

Searched refs:zs (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
DMatrix3f.java135 float zs = z * s; in loadRotate() local
137 mMat[3] = xy*nc - zs; in loadRotate()
139 mMat[1] = xy*nc + zs; in loadRotate()
DMatrix4f.java178 float zs = z * s; in loadRotate() local
180 mMat[ 4] = xy*nc - zs; in loadRotate()
182 mMat[ 1] = xy*nc + zs; in loadRotate()
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
DMatrix3f.java135 float zs = z * s; in loadRotate() local
137 mMat[3] = xy*nc - zs; in loadRotate()
139 mMat[1] = xy*nc + zs; in loadRotate()
DMatrix4f.java178 float zs = z * s; in loadRotate() local
180 mMat[ 4] = xy*nc - zs; in loadRotate()
182 mMat[ 1] = xy*nc + zs; in loadRotate()
/frameworks/support/renderscript/v8/rs_support/
DrsMatrix4x4.cpp226 const float zs = z * s; in loadRotate() local
228 m[ 4] = xy*nc - zs; in loadRotate()
230 m[ 1] = xy*nc + zs; in loadRotate()
/frameworks/rs/
DrsMatrix4x4.cpp226 const float zs = z * s; in loadRotate() local
228 m[ 4] = xy*nc - zs; in loadRotate()
230 m[ 1] = xy*nc + zs; in loadRotate()
/frameworks/base/libs/hwui/
DMatrix.cpp248 const float zs = z * s; in loadRotate() local
251 data[kSkewX] = xy * nc - zs; in loadRotate()
253 data[kSkewY] = xy * nc + zs; in loadRotate()
/frameworks/base/opengl/java/android/opengl/
DMatrix.java597 float zs = z * s; in setRotateM() local
599 rm[rmOffset + 4] = xy*nc - zs; in setRotateM()
601 rm[rmOffset + 1] = xy*nc + zs; in setRotateM()
/frameworks/native/opengl/libagl/
Dmatrix.cpp372 const GLfloat zs = z * s; in rotate() local
373 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys; in rotate()
374 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs; in rotate()