Home
last modified time | relevance | path

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

/frameworks/native/cmds/atrace/
Datrace.cpp937 z_stream zs; in dumpTrace() local
938 memset(&zs, 0, sizeof(zs)); in dumpTrace()
940 int result = deflateInit(&zs, Z_DEFAULT_COMPRESSION); in dumpTrace()
958 zs.next_out = reinterpret_cast<Bytef*>(out.get()); in dumpTrace()
959 zs.avail_out = bufSize; in dumpTrace()
963 if (zs.avail_in == 0) { in dumpTrace()
974 zs.next_in = reinterpret_cast<Bytef*>(in.get()); in dumpTrace()
975 zs.avail_in = result; in dumpTrace()
979 if (zs.avail_out == 0) { in dumpTrace()
986 zs.avail_out = bufSize; // skip the final write in dumpTrace()
[all …]
/frameworks/base/rs/java/android/renderscript/
DMatrix3f.java136 float zs = z * s; in loadRotate() local
138 mMat[3] = xy*nc - zs; in loadRotate()
140 mMat[1] = xy*nc + zs; in loadRotate()
DMatrix4f.java181 float zs = z * s; in loadRotate() local
183 mMat[ 4] = xy*nc - zs; in loadRotate()
185 mMat[ 1] = xy*nc + zs; in loadRotate()
/frameworks/rs/support/java/src/androidx/renderscript/
DMatrix3f.java139 float zs = z * s; in loadRotate() local
141 mMat[3] = xy*nc - zs; in loadRotate()
143 mMat[1] = xy*nc + zs; in loadRotate()
DMatrix4f.java182 float zs = z * s; in loadRotate() local
184 mMat[ 4] = xy*nc - zs; in loadRotate()
186 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/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/base/libs/hwui/
DMatrix.cpp362 const float zs = z * s; in loadRotate() local
365 data[kSkewX] = xy * nc - zs; in loadRotate()
367 data[kSkewY] = xy * nc + zs; in loadRotate()
/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/base/core/java/android/os/
DZygoteProcess.java1200 final ZygoteState zs = in waitForConnectionToZygote() local
1202 zs.close(); in waitForConnectionToZygote()