Searched defs:zs (Results 1 - 5 of 5) sorted by relevance

/frameworks/rs/
H A DrsMatrix4x4.cpp226 const float zs = z * s; local
228 m[ 4] = xy*nc - zs;
230 m[ 1] = xy*nc + zs;
/frameworks/base/libs/hwui/
H A DMatrix.cpp336 const float zs = z * s; local
339 data[kSkewX] = xy * nc - zs;
341 data[kSkewY] = xy * nc + zs;
/frameworks/native/include/ui/
H A Dmat4.h320 T zs = z * s; local
321 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys;
322 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs;
/frameworks/native/cmds/atrace/
H A Datrace.cpp647 z_stream zs; local
651 bzero(&zs, sizeof(zs));
652 result = deflateInit(&zs, Z_DEFAULT_COMPRESSION);
664 zs.next_out = out;
665 zs.avail_out = bufSize;
669 if (zs.avail_in == 0) {
680 zs.next_in = in;
681 zs.avail_in = result;
685 if (zs
[all...]
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp372 const GLfloat zs = z * s; local
373 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys;
374 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs;

Completed in 953 milliseconds