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

123

/external/libvncserver/libvncserver/
H A Dzrleoutstream.h38 z_stream zs; member in struct:__anon12607
/external/syslinux/com32/lib/sys/
H A Dzfile.c62 z_streamp zs = calloc(1, sizeof(z_stream)); local
64 if (!zs)
67 fp->i.pvt = zs;
69 zs->next_in = (void *)fp->i.datap;
70 zs->avail_in = fp->i.nbytes;
72 if (inflateInit2(zs, 15 + 32) != Z_OK) {
85 z_streamp zs = fp->i.pvt; local
92 zs->next_out = p;
93 zs->avail_out = n;
95 if (!zs
133 z_streamp zs = fp->i.pvt; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1Point.java55 SecP192K1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, argument
58 super(curve, x, y, zs);
89 SecP192K1FieldElement Z1 = (SecP192K1FieldElement)this.zs[0];
189 ECFieldElement[] zs = new ECFieldElement[] { Z3 };
191 return new SecP192K1Point(curve, X3, Y3, zs, this.withCompression);
210 SecP192K1FieldElement X1 = (SecP192K1FieldElement)this.x, Z1 = (SecP192K1FieldElement)this.zs[0];
296 return new SecP192K1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP192R1Point.java55 SecP192R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
57 super(curve, x, y, zs);
88 SecP192R1FieldElement Z1 = (SecP192R1FieldElement)this.zs[0];
188 ECFieldElement[] zs = new ECFieldElement[]{ Z3 };
190 return new SecP192R1Point(curve, X3, Y3, zs, this.withCompression);
209 SecP192R1FieldElement X1 = (SecP192R1FieldElement)this.x, Z1 = (SecP192R1FieldElement)this.zs[0];
308 return new SecP192R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP224K1Point.java55 SecP224K1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, argument
58 super(curve, x, y, zs);
89 SecP224K1FieldElement Z1 = (SecP224K1FieldElement)this.zs[0];
189 ECFieldElement[] zs = new ECFieldElement[] { Z3 };
191 return new SecP224K1Point(curve, X3, Y3, zs, this.withCompression);
210 SecP224K1FieldElement X1 = (SecP224K1FieldElement)this.x, Z1 = (SecP224K1FieldElement)this.zs[0];
296 return new SecP224K1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP224R1Point.java55 SecP224R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
57 super(curve, x, y, zs);
87 SecP224R1FieldElement Z1 = (SecP224R1FieldElement)this.zs[0];
187 ECFieldElement[] zs = new ECFieldElement[]{ Z3 };
189 return new SecP224R1Point(curve, X3, Y3, zs, this.withCompression);
207 SecP224R1FieldElement X1 = (SecP224R1FieldElement)this.x, Z1 = (SecP224R1FieldElement)this.zs[0];
306 return new SecP224R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP256K1Point.java55 SecP256K1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, argument
58 super(curve, x, y, zs);
89 SecP256K1FieldElement Z1 = (SecP256K1FieldElement)this.zs[0];
189 ECFieldElement[] zs = new ECFieldElement[] { Z3 };
191 return new SecP256K1Point(curve, X3, Y3, zs, this.withCompression);
210 SecP256K1FieldElement X1 = (SecP256K1FieldElement)this.x, Z1 = (SecP256K1FieldElement)this.zs[0];
296 return new SecP256K1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP256R1Point.java55 SecP256R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
57 super(curve, x, y, zs);
87 SecP256R1FieldElement Z1 = (SecP256R1FieldElement)this.zs[0];
187 ECFieldElement[] zs = new ECFieldElement[]{ Z3 };
189 return new SecP256R1Point(curve, X3, Y3, zs, this.withCompression);
207 SecP256R1FieldElement X1 = (SecP256R1FieldElement)this.x, Z1 = (SecP256R1FieldElement)this.zs[0];
306 return new SecP256R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP384R1Point.java55 SecP384R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
57 super(curve, x, y, zs);
87 SecP384R1FieldElement Z1 = (SecP384R1FieldElement)this.zs[0];
188 ECFieldElement[] zs = new ECFieldElement[]{ Z3 };
190 return new SecP384R1Point(curve, X3, Y3, zs, this.withCompression);
208 SecP384R1FieldElement X1 = (SecP384R1FieldElement)this.x, Z1 = (SecP384R1FieldElement)this.zs[0];
307 return new SecP384R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
H A DSecP192K1Curve.java70 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
72 return new SecP192K1Point(this, x, y, zs, withCompression);
H A DSecP192R1Curve.java71 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
73 return new SecP192R1Point(this, x, y, zs, withCompression);
H A DSecP224K1Curve.java69 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
71 return new SecP224K1Point(this, x, y, zs, withCompression);
H A DSecP224R1Curve.java71 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
73 return new SecP224R1Point(this, x, y, zs, withCompression);
H A DSecP256K1Curve.java69 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
71 return new SecP256K1Point(this, x, y, zs, withCompression);
H A DSecP256R1Curve.java71 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
73 return new SecP256R1Point(this, x, y, zs, withCompression);
H A DSecP384R1Curve.java71 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
73 return new SecP384R1Point(this, x, y, zs, withCompression);
H A DSecP521R1Curve.java71 protected ECPoint createRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
73 return new SecP521R1Point(this, x, y, zs, withCompression);
H A DSecP521R1Point.java54 SecP521R1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) argument
56 super(curve, x, y, zs);
86 SecP521R1FieldElement Z1 = (SecP521R1FieldElement)this.zs[0];
183 ECFieldElement[] zs = new ECFieldElement[]{ Z3 };
185 return new SecP521R1Point(curve, X3, Y3, zs, this.withCompression);
203 SecP521R1FieldElement X1 = (SecP521R1FieldElement)this.x, Z1 = (SecP521R1FieldElement)this.zs[0];
331 return new SecP521R1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.c208 boolean zs = util_format_is_depth_or_stencil(tc->format); local
263 if (!zs && util_format_is_pure_uint(tc->format)) {
271 } else if (!zs && util_format_is_pure_sint(tc->format)) {
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.c114 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
116 _mesa_update_hitflag( ctx, v0->attrib[VARYING_SLOT_POS][2] * zs );
117 _mesa_update_hitflag( ctx, v1->attrib[VARYING_SLOT_POS][2] * zs );
118 _mesa_update_hitflag( ctx, v2->attrib[VARYING_SLOT_POS][2] * zs );
126 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
127 _mesa_update_hitflag( ctx, v0->attrib[VARYING_SLOT_POS][2] * zs );
128 _mesa_update_hitflag( ctx, v1->attrib[VARYING_SLOT_POS][2] * zs );
135 const GLfloat zs = 1.0F / ctx->DrawBuffer->_DepthMaxF; local
136 _mesa_update_hitflag( ctx, v->attrib[VARYING_SLOT_POS][2] * zs );
/external/fio/lib/
H A Dzipf.c15 static void zipf_update(struct zipf_state *zs) argument
25 to_gen = min(zs->nranges, (uint64_t) ZIPF_MAX_GEN);
28 zs->zetan += pow(1.0 / (double) (i + 1), zs->theta);
31 static void shared_rand_init(struct zipf_state *zs, unsigned long nranges, argument
34 memset(zs, 0, sizeof(*zs));
35 zs->nranges = nranges;
37 init_rand_seed(&zs->rand, seed, 0);
38 zs
41 zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, unsigned int seed) argument
52 zipf_next(struct zipf_state *zs) argument
79 pareto_init(struct zipf_state *zs, unsigned long nranges, double h, unsigned int seed) argument
86 pareto_next(struct zipf_state *zs) argument
99 zipf_disable_hash(struct zipf_state *zs) argument
[all...]
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_render_gen8.c146 const struct ilo_state_zs *zs; local
157 zs = &surface->u.zs;
161 zs = &vec->fb.null_zs;
167 gen6_3DSTATE_DEPTH_BUFFER(r->builder, zs);
168 gen6_3DSTATE_HIER_DEPTH_BUFFER(r->builder, zs);
169 gen6_3DSTATE_STENCIL_BUFFER(r->builder, zs);
362 gen6_3DSTATE_DEPTH_BUFFER(r->builder, &blitter->fb.dst.u.zs);
366 &blitter->fb.dst.u.zs);
371 &blitter->fb.dst.u.zs);
[all...]
H A Dilo_blitter_pipe.c192 struct pipe_surface *zs,
201 zs, clear_flags, depth, stencil, x, y, width, height);
191 ilo_blitter_pipe_clear_zs(struct ilo_blitter *blitter, struct pipe_surface *zs, unsigned clear_flags, double depth, unsigned stencil, unsigned x, unsigned y, unsigned width, unsigned height) argument
/external/okhttp/okio/okio/src/test/java/okio/
H A DSegmentSharingTest.java31 private static final String zs = TestUtil.repeat('z', Segment.SIZE / 2 + 3); field in class:SegmentSharingTest
39 ByteString byteString = concatenateBuffers(xs, ys, zs).snapshot();
40 assertEquivalent(byteString, concatenateBuffers(xs, ys + zs).snapshot());
41 assertEquivalent(byteString, concatenateBuffers(xs + ys + zs).snapshot());
42 assertEquivalent(byteString, ByteString.encodeUtf8(xs + ys + zs));
46 ByteString byteString = concatenateBuffers(xs, ys, zs).snapshot();
52 assertEquals('z', byteString.getByte(xs.length() + ys.length() + zs.length() - 1));
59 byteString.getByte(xs.length() + ys.length() + zs.length());
66 ByteString byteString = concatenateBuffers(xs, ys, zs).snapshot();
69 assertEquals(xs + ys + zs, ou
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECAlgorithms.java134 public static void montgomeryTrick(ECFieldElement[] zs, int off, int len) argument
136 montgomeryTrick(zs, off, len, null);
139 public static void montgomeryTrick(ECFieldElement[] zs, int off, int len, ECFieldElement scale) argument
149 c[0] = zs[off];
154 c[i] = c[i - 1].multiply(zs[off + i]);
169 ECFieldElement tmp = zs[j];
170 zs[j] = c[i].multiply(u);
174 zs[off] = u;

Completed in 919 milliseconds

123