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.cpp333 const float zs = z * s; local
336 data[kSkewX] = xy * nc - zs;
338 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.cpp582 z_stream zs; local
586 bzero(&zs, sizeof(zs));
587 result = deflateInit(&zs, Z_DEFAULT_COMPRESSION);
599 zs.next_out = out;
600 zs.avail_out = bufSize;
604 if (zs.avail_in == 0) {
615 zs.next_in = in;
616 zs.avail_in = result;
620 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 226 milliseconds