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

/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_feedback.c115 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
117 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs );
118 _mesa_update_hitflag( ctx, v1->attrib[FRAG_ATTRIB_WPOS][2] * zs );
119 _mesa_update_hitflag( ctx, v2->attrib[FRAG_ATTRIB_WPOS][2] * zs );
127 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
128 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs );
129 _mesa_update_hitflag( ctx, v1->attrib[FRAG_ATTRIB_WPOS][2] * zs );
136 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
137 _mesa_update_hitflag( ctx, v->attrib[FRAG_ATTRIB_WPOS][2] * zs );
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.c115 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
117 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs );
118 _mesa_update_hitflag( ctx, v1->attrib[FRAG_ATTRIB_WPOS][2] * zs );
119 _mesa_update_hitflag( ctx, v2->attrib[FRAG_ATTRIB_WPOS][2] * zs );
127 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
128 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs );
129 _mesa_update_hitflag( ctx, v1->attrib[FRAG_ATTRIB_WPOS][2] * zs );
136 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
137 _mesa_update_hitflag( ctx, v->attrib[FRAG_ATTRIB_WPOS][2] * zs );
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.c232 boolean zs = util_format_is_depth_or_stencil(tc->format); local
295 if (!zs && util_format_is_pure_uint(tc->format)) {
304 } else if (!zs && util_format_is_pure_sint(tc->format)) {
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.c232 boolean zs = util_format_is_depth_or_stencil(tc->format); local
295 if (!zs && util_format_is_pure_uint(tc->format)) {
304 } else if (!zs && util_format_is_pure_sint(tc->format)) {
/external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/
H A DesTransform.c64 GLfloat xx, yy, zz, xy, yz, zx, xs, ys, zs; local
80 zs = z * sinAngle;
84 rotMat.m[0][1] = (oneMinusCos * xy) - zs;
88 rotMat.m[1][0] = (oneMinusCos * xy) + zs;
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeBulletUtil.cpp227 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
231 float zs = z * s; local
234 float xz = x * zs;
237 float yz = y * zs;
239 float zz = z * zs;
240 float zw = w * zs;
/external/zlib/src/contrib/iostream2/
H A Dzstream.h115 inline int read(izstream& zs, T* x, Items items) { argument
116 return ::gzread(zs.fp(), x, items*sizeof(T));
123 inline izstream& operator>(izstream& zs, T& x) { argument
124 ::gzread(zs.fp(), &x, sizeof(T));
125 return zs;
129 inline zstringlen::zstringlen(izstream& zs) { argument
130 zs > val.byte;
131 if (val.byte == 255) zs > val.word;
138 inline izstream& operator>(izstream& zs, char* x) { argument
139 zstringlen len(zs);
145 read_string(izstream& zs) argument
264 write(ozstream& zs, const T* x, Items items) argument
272 operator <(ozstream& zs, const T& x) argument
277 zstringlen(ozstream& zs, const char* x) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_noise.c333 float zs = z + s; local
336 int k = FASTFLOOR(zs);
490 float zs = z + s; local
494 int k = FASTFLOOR(zs);
/external/mesa3d/src/mesa/program/
H A Dprog_noise.c333 float zs = z + s; local
336 int k = FASTFLOOR(zs);
490 float zs = z + s; local
494 int k = FASTFLOOR(zs);
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_matrix.c797 GLfloat xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c, s, c; local
932 zs = z * s;
937 M(0,1) = (one_c * xy) - zs;
941 M(1,0) = (one_c * xy) + zs;
/external/chromium_org/third_party/skia/src/utils/
H A DSkMatrix44.cpp318 double zs = z * s; local
328 SkDoubleToMScalar(xyC + zs), // skew x
331 SkDoubleToMScalar(xyC - zs), // skew y
/external/mesa3d/src/mesa/math/
H A Dm_matrix.c797 GLfloat xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c, s, c; local
932 zs = z * s;
937 M(0,1) = (one_c * xy) - zs;
941 M(1,0) = (one_c * xy) + zs;
/external/skia/src/utils/
H A DSkMatrix44.cpp318 double zs = z * s; local
328 SkDoubleToMScalar(xyC + zs), // skew x
331 SkDoubleToMScalar(xyC - zs), // skew y
/external/chromium_org/third_party/WebKit/Source/wtf/
H A Ddtoa.cpp622 uint32_t si, z, zs; local
650 zs = (si >> 16) * q + (ys >> 16);
651 carry = zs >> 16;
654 z = (*bx >> 16) - (zs & 0xffff) - borrow;
682 zs = (si >> 16) + (ys >> 16);
683 carry = zs >> 16;
686 z = (*bx >> 16) - (zs & 0xffff) - borrow;
/external/opencv/cv/src/
H A Dcvfundam.cpp1342 const float* zs = 0; local
1353 zs = ys + s_plane_stride;
1369 float x = *xs * w, y = *ys * w, z = *zs * w;
1370 xs += s_stride; ys += s_stride; zs += s_stride;
1388 const double* zs = 0; local
1399 zs = ys + s_plane_stride;
1415 double x = *xs * w, y = *ys * w, z = *zs * w;
1416 xs += s_stride; ys += s_stride; zs += s_stride;
/external/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc2120 ULong si, z, zs; variable
2154 zs = (si >> 16) * q + (ys >> 16);
2155 carry = zs >> 16;
2158 z = (*bx >> 16) - (zs & 0xffff) - borrow;
2195 zs = (si >> 16) + (ys >> 16);
2196 carry = zs >> 16;
2199 z = (*bx >> 16) - (zs & 0xffff) - borrow;
/external/chromium_org/base/third_party/dmg_fp/
H A Ddtoa.cc2120 ULong si, z, zs; variable
2154 zs = (si >> 16) * q + (ys >> 16);
2155 carry = zs >> 16;
2158 z = (*bx >> 16) - (zs & 0xffff) - borrow;
2195 zs = (si >> 16) + (ys >> 16);
2196 carry = zs >> 16;
2199 z = (*bx >> 16) - (zs & 0xffff) - borrow;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 686 milliseconds