Searched refs:nz (Results 1 - 25 of 87) sorted by relevance

1234

/external/chromium_org/v8/test/mjsunit/
H A Dnegate-zero.js36 var nz = -0; variable
38 assertTrue(IsNegativeZero(nz), "-0");
39 assertFalse(IsNegativeZero(-nz), "-(-0)");
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A D3d-morph.js28 var nz = 120
35 for (var i = 0; i < nz; ++i) {
44 for (var i=0; i < nx*nz*3; ++i)
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A D3d-morph.js28 var nz = 120
35 for (var i = 0; i < nz; ++i) {
44 for (var i=0; i < nx*nz*3; ++i)
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A D3d-morph.js28 var nz = 120
35 for (var i = 0; i < nz; ++i) {
44 for (var i=0; i < nx*nz*3; ++i)
/external/chromium_org/third_party/libwebp/enc/
H A Dquant.c69 printf("\nD:%d SD:%d R:%d H:%d nz:0x%x score:%d\n",
70 (int)rd->D, (int)rd->SD, (int)rd->R, (int)rd->H, (int)rd->nz,
493 rd->nz = 0;
502 dst->nz = src->nz; // note that nz is not accumulated, but just copied.
511 dst->nz |= src->nz; // here, new nz bits are accumulated.
692 int nz local
724 int nz = 0; local
775 int nz = 0; local
797 int nz = 0; local
880 int nz; local
1060 int nz = 0; local
[all...]
H A Diterator.c228 #define BIT(nz, n) (!!((nz) & (1 << (n))))
264 uint32_t nz = 0; local
268 nz |= (top_nz[0] << 12) | (top_nz[1] << 13);
269 nz |= (top_nz[2] << 14) | (top_nz[3] << 15);
270 nz |= (top_nz[4] << 18) | (top_nz[5] << 19);
271 nz |= (top_nz[6] << 22) | (top_nz[7] << 23);
272 nz |= (top_nz[8] << 24); // we propagate the _top_ bit, esp. for intra4
274 nz |= (left_nz[0] << 3) | (left_nz[1] << 7);
275 nz |
[all...]
/external/webp/src/enc/
H A Dquant.c69 printf("\nD:%d SD:%d R:%d H:%d nz:0x%x score:%d\n",
70 (int)rd->D, (int)rd->SD, (int)rd->R, (int)rd->H, (int)rd->nz,
493 rd->nz = 0;
502 dst->nz = src->nz; // note that nz is not accumulated, but just copied.
511 dst->nz |= src->nz; // here, new nz bits are accumulated.
692 int nz local
724 int nz = 0; local
775 int nz = 0; local
797 int nz = 0; local
880 int nz; local
1060 int nz = 0; local
[all...]
H A Diterator.c228 #define BIT(nz, n) (!!((nz) & (1 << (n))))
264 uint32_t nz = 0; local
268 nz |= (top_nz[0] << 12) | (top_nz[1] << 13);
269 nz |= (top_nz[2] << 14) | (top_nz[3] << 15);
270 nz |= (top_nz[4] << 18) | (top_nz[5] << 19);
271 nz |= (top_nz[6] << 22) | (top_nz[7] << 23);
272 nz |= (top_nz[8] << 24); // we propagate the _top_ bit, esp. for intra4
274 nz |= (left_nz[0] << 3) | (left_nz[1] << 7);
275 nz |
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
H A Dmemset.S72 tbit.nz p_y, p_n = dest, 0 // Do we have an odd address? (M_B_U)
88 (p_unalgn) tbit.nz.unc p_y, p_n = bytecnt, 3 // should we do a st8 ?
92 (p_unalgn) tbit.nz.unc p_yy, p_nn = bytecnt, 2 // should we do a st4 ?
99 (p_unalgn) tbit.nz.unc p_y, p_n = bytecnt, 1 // should we do a st2 ?
107 (p_unalgn) tbit.nz.unc p_yy, p_nn = bytecnt, 0 // should we do a st1 ?
298 tbit.nz.unc p_y, p0 = cnt, 2 // should we terminate with a st4 ?
303 tbit.nz.unc p_yy, p0 = cnt, 1 // should we terminate with a st2 ?
307 tbit.nz.unc p_y, p0 = cnt, 0 // should we terminate with a st1 ?
344 tbit.nz p_scr, p0 = cnt, 1 // will there be a st2 at the end ?
353 tbit.nz p_
[all...]
/external/chromium_org/third_party/libwebp/dec/
H A Dvp8.c450 static WEBP_INLINE uint32_t NzCodeBits(uint32_t nz_coeffs, int nz, int dc_nz) { argument
452 nz_coeffs |= (nz > 3) ? 3 : (nz > 1) ? 2 : dc_nz;
475 const int nz = GetCoeffs(token_br, bands[1], ctx, q->y2_mat_, 0, dc); local
476 mb->nz_dc_ = left_mb->nz_dc_ = (nz > 0);
477 if (nz > 1) { // more than just the DC -> perform the full transform
498 const int nz = GetCoeffs(token_br, ac_proba, ctx, q->y1_mat_, first, dst); local
499 l = (nz > first);
501 nz_coeffs = NzCodeBits(nz_coeffs, nz, dst[0] != 0);
519 const int nz local
[all...]
/external/webp/src/dec/
H A Dvp8.c450 static WEBP_INLINE uint32_t NzCodeBits(uint32_t nz_coeffs, int nz, int dc_nz) { argument
452 nz_coeffs |= (nz > 3) ? 3 : (nz > 1) ? 2 : dc_nz;
475 const int nz = GetCoeffs(token_br, bands[1], ctx, q->y2_mat_, 0, dc); local
476 mb->nz_dc_ = left_mb->nz_dc_ = (nz > 0);
477 if (nz > 1) { // more than just the DC -> perform the full transform
498 const int nz = GetCoeffs(token_br, ac_proba, ctx, q->y1_mat_, first, dst); local
499 l = (nz > first);
501 nz_coeffs = NzCodeBits(nz_coeffs, nz, dst[0] != 0);
519 const int nz local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c32 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz) argument
44 if (nz == 1)
50 if (nz > 16 && tile_mode < 0x020)
52 if (nz > 8) return tile_mode | 0x400; /* depth 16 tiles */
53 if (nz > 4) return tile_mode | 0x300; /* depth 8 tiles */
54 if (nz > 2) return tile_mode | 0x200; /* depth 4 tiles */
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_miptree.c32 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz) argument
44 if (nz == 1)
50 if (nz > 16 && tile_mode < 0x020)
52 if (nz > 8) return tile_mode | 0x400; /* depth 16 tiles */
53 if (nz > 4) return tile_mode | 0x300; /* depth 8 tiles */
54 if (nz > 2) return tile_mode | 0x200; /* depth 4 tiles */
/external/ceres-solver/internal/ceres/
H A Dcxsparse.cc123 block_matrix.nz = -1;
171 At.nz = -1;
182 tsm_wrapper.nz = tsm->num_nonzeros();
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DRandomSetter.h310 Index nz = 0; local
312 nz += static_cast<Index>(m_hashmaps[k].size());
313 return nz;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp73 vertex(float x, float y, float z, float nx, float ny, float nz) argument
80 normal[2] = nz;
84 #define VERT(x, y, z) vertices.push_back(vertex((x), (y), (z), (nx), (ny), (nz)))
91 float nx, ny, nz; local
128 nz = (float)face;
169 nz = 0;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.cpp73 vertex(float x, float y, float z, float nx, float ny, float nz) argument
80 normal[2] = nz;
84 #define VERT(x, y, z) vertices.push_back(vertex((x), (y), (z), (nx), (ny), (nz)))
91 float nx, ny, nz; local
128 nz = (float)face;
169 nz = 0;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_resource.h35 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz);
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_resource.h35 nvc0_tex_choose_tile_dims(unsigned nx, unsigned ny, unsigned nz);
/external/libunwind/tests/
H A Dia64-dyn-asm.S66 tbit.nz p6, p0 = in0, 4
H A Dia64-test-nat-asm.S44 tbit.nz p15, p0 = reg, 0;; \
115 tbit.nz p6, p0 = r4, 0;;
384 tnat.nz p6, p7 = r5;;
/external/libvorbis/lib/
H A Dpsy.c1041 int *nz = alloca(ch*sizeof(*nz)); local
1068 memcpy(nz,nonzero,sizeof(*nz)*ch);
1074 if(nz[k]){
1117 if(nz[Mi] || nz[Ai]){
1118 nz[Mi] = nz[Ai] = 1;
/external/chromium_org/native_client_sdk/src/examples/demo/earth/
H A Dearth.cc433 float nz = (pz - planet_z_) * planet_one_over_radius_;
443 float d = (Lx * nx + Ly * ny + Lz * nz);
449 nz * planet_pole_z_);
454 planet_equator_z_ * nz;
461 planet_pole_x_equator_z_ * nz;
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/
H A Dearth.cc471 float nz = (pz - planet_z_) * planet_one_over_radius_;
481 float d = (Lx * nx + Ly * ny + Lz * nz);
487 nz * planet_pole_z_);
492 planet_equator_z_ * nz;
499 planet_pole_x_equator_z_ * nz;
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperations.cpp113 static void findCandidatesInPlane(double px, double py, double nz, double* candidates, int* numCandidates) argument
115 // The angle that this point is rotated with respect to the plane nz
123 if (nz < 0.f) {

Completed in 949 milliseconds

1234