Home
last modified time | relevance | path

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

/frameworks/native/cmds/atrace/
Datrace.cpp923 z_stream zs; in dumpTrace() local
924 memset(&zs, 0, sizeof(zs)); in dumpTrace()
926 int result = deflateInit(&zs, Z_DEFAULT_COMPRESSION); in dumpTrace()
944 zs.next_out = reinterpret_cast<Bytef*>(out.get()); in dumpTrace()
945 zs.avail_out = bufSize; in dumpTrace()
949 if (zs.avail_in == 0) { in dumpTrace()
960 zs.next_in = reinterpret_cast<Bytef*>(in.get()); in dumpTrace()
961 zs.avail_in = result; in dumpTrace()
965 if (zs.avail_out == 0) { in dumpTrace()
972 zs.avail_out = bufSize; // skip the final write in dumpTrace()
[all …]
/frameworks/rs/support/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/base/rs/java/android/renderscript/
DMatrix3f.java132 float zs = z * s; in loadRotate() local
134 mMat[3] = xy*nc - zs; in loadRotate()
136 mMat[1] = xy*nc + zs; in loadRotate()
DMatrix4f.java177 float zs = z * s; in loadRotate() local
179 mMat[ 4] = xy*nc - zs; in loadRotate()
181 mMat[ 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/core/java/android/os/
DZygoteProcess.java543 final ZygoteState zs = ZygoteState.connect(socketName); in waitForConnectionToZygote() local
544 zs.close(); in waitForConnectionToZygote()
/frameworks/base/libs/hwui/
DMatrix.cpp357 const float zs = z * s; in loadRotate() local
360 data[kSkewX] = xy * nc - zs; in loadRotate()
362 data[kSkewY] = xy * nc + zs; in loadRotate()
/frameworks/base/opengl/java/android/opengl/
DMatrix.java624 float zs = z * s; in setRotateM() local
626 rm[rmOffset + 4] = xy*nc - zs; in setRotateM()
628 rm[rmOffset + 1] = xy*nc + zs; in setRotateM()
/frameworks/native/libs/math/include/math/
DTMatHelpers.h516 T zs = z * 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()
518 r[0][1] = xy*nc + zs; r[1][1] = y*y*nc + c; r[2][1] = yz*nc - xs; in rotate()
/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()