Home
last modified time | relevance | path

Searched refs:zs (Results 1 – 25 of 49) sorted by relevance

12

/openbsd-src/usr.bin/compress/
H A Dzopen.c163 #define htabof(i) zs->zs_htab[i]
164 #define codetabof(i) zs->zs_codetab[i]
167 #define tab_suffixof(i) ((u_char *)(zs->zs_htab))[i]
215 struct s_zstate *zs; in zwrite() local
220 zs = cookie; in zwrite()
223 switch (zs->zs_state) { in zwrite()
229 zs->zs_state = S_MIDDLE; in zwrite()
231 zs->zs_maxmaxcode = 1L << zs->zs_maxbits; in zwrite()
232 if (write(zs->zs_fd, z_magic, sizeof(z_magic)) != in zwrite()
235 tmp = (u_char)(zs->zs_maxbits | zs->zs_block_compress); in zwrite()
[all …]
/openbsd-src/sbin/savecore/
H A Dzopen.c163 #define htabof(i) zs->zs_htab[i]
164 #define codetabof(i) zs->zs_codetab[i]
167 #define tab_suffixof(i) ((u_char *)(zs->zs_htab))[i]
214 struct s_zstate *zs; in zwrite() local
219 zs = cookie; in zwrite()
222 switch (zs->zs_state) { in zwrite()
228 zs->zs_state = S_MIDDLE; in zwrite()
230 zs->zs_maxmaxcode = 1L << zs->zs_maxbits; in zwrite()
231 if (write(zs->zs_fd, z_magic, sizeof(z_magic)) != in zwrite()
234 tmp = (u_char)(zs->zs_maxbits | zs->zs_block_compress); in zwrite()
[all …]
/openbsd-src/lib/libfido2/src/
H A Dcompress.c47 z_stream zs; in rfc1951_inflate() local
51 memset(&zs, 0, sizeof(zs)); in rfc1951_inflate()
60 if ((z = inflateInit2(&zs, -MAX_WBITS)) != Z_OK) { in rfc1951_inflate()
70 zs.next_in = in->ptr; in rfc1951_inflate()
71 zs.avail_in = ilen; in rfc1951_inflate()
72 zs.next_out = out->ptr; in rfc1951_inflate()
73 zs.avail_out = olen; in rfc1951_inflate()
75 if ((z = inflate(&zs, Z_FINISH)) != Z_STREAM_END) { in rfc1951_inflate()
80 if (zs.avail_out != 0) { in rfc1951_inflate()
81 fido_log_debug("%s: %u != 0", __func__, zs.avail_out); in rfc1951_inflate()
[all …]
/openbsd-src/sys/dev/microcode/myx/
H A Dbuild.c40 z_stream zs; in myx_build_firmware() local
55 bzero(&zs, sizeof (zs)); in myx_build_firmware()
56 rv = inflateInit(&zs); in myx_build_firmware()
60 zs.avail_in = len; in myx_build_firmware()
61 zs.next_in = fw; in myx_build_firmware()
62 zs.avail_out = ulen; in myx_build_firmware()
63 zs.next_out = ufw; in myx_build_firmware()
64 rv = inflate(&zs, Z_FINISH); in myx_build_firmware()
68 inflateEnd(&zs); in myx_build_firmware()
/openbsd-src/lib/libc/gdtoa/
H A Ddmisc.c124 ULong si, z, zs; local
158 zs = (si >> 16) * q + (ys >> 16);
159 carry = zs >> 16;
162 z = (*bx >> 16) - (zs & 0xffff) - borrow;
199 zs = (si >> 16) + (ys >> 16);
200 carry = zs >> 16;
203 z = (*bx >> 16) - (zs & 0xffff) - borrow;
/openbsd-src/lib/libm/src/
H A Ds_fmal.c50 long double xs, ys, zs; in fmal() local
73 zs = frexpl(z, &ez); in fmal()
164 zs = ldexpl(zs, -spread); in fmal()
165 r = c + zs; in fmal()
167 rr = (c - (r - s)) + (zs - s) + cc; in fmal()
H A Ds_fma.c55 double xs, ys, zs; in fma() local
78 zs = frexp(z, &ez); in fma()
169 zs = ldexp(zs, -spread); in fma()
170 r = c + zs; in fma()
172 rr = (c - (r - s)) + (zs - s) + cc; in fma()
/openbsd-src/sys/dev/tc/
H A Dzs_ioasic.c226 struct zsc_softc *zs = (void *)self; in zs_ioasic_attach() local
261 zs->zsc_cs[channel] = cs; in zs_ioasic_attach()
262 zs->zsc_addroffset = d->iada_offset; /* cookie only */ in zs_ioasic_attach()
298 cs->cs_ctl_chan = zs->zsc_cs[0]; in zs_ioasic_attach()
339 zs_ioasic_hardintr, zs, self->dv_xname); in zs_ioasic_attach()
340 zs->zsc_sih = softintr_establish(IPL_SOFTSERIAL, zs_ioasic_softintr, zs); in zs_ioasic_attach()
341 if (zs->zsc_sih == NULL) in zs_ioasic_attach()
351 zs_write_reg(zs->zsc_cs[0], 2, zs_ioasic_init_reg[2]); in zs_ioasic_attach()
352 zs_write_reg(zs->zsc_cs[1], 2, zs_ioasic_init_reg[2]); in zs_ioasic_attach()
355 zs_write_reg(zs->zsc_cs[0], 9, zs_ioasic_init_reg[9]); in zs_ioasic_attach()
[all …]
H A Dfiles.tc45 device zs {[channel = -1]}
46 attach zs at ioasic with zs_ioasic
47 file dev/tc/zs_ioasic.c zs needs-flag
48 file dev/ic/z8530sc.c zs
51 attach zstty at zs
/openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/bzip2-src/
H A Dbzlib.c264 #define ADD_CHAR_TO_BLOCK(zs,zchh0) \ argument
268 if (zchh != zs->state_in_ch && \
269 zs->state_in_len == 1) { \
270 UChar ch = (UChar)(zs->state_in_ch); \
271 BZ_UPDATE_CRC( zs->blockCRC, ch ); \
272 zs->inUse[zs->state_in_ch] = True; \
273 zs->block[zs->nblock] = (UChar)ch; \
274 zs
[all...]
/openbsd-src/sys/arch/macppc/macppc/
H A Dconf.c137 cdev_tty_init(NZSTTY,zs), /* 7: Serial ports */
294 cons_decl(zs);
301 cons_init(zs),
/openbsd-src/sys/arch/macppc/conf/
H A Dfiles.macppc135 device zs {[channel = -1]}
136 attach zs at macobio
137 file arch/macppc/dev/zs.c zs needs-flag
138 file dev/ic/z8530sc.c zs
141 attach zstty at zs
/openbsd-src/sys/arch/sparc64/conf/
H A DRAMDISKU154 zs* at sbus?
55 zstty* at zs?
56 zskbd* at zs?
H A Dfiles.sparc6483 device zs {[channel = -1]}
276 #device zs {[channel = -1]}
277 attach zs at sbus with zs_sbus
278 attach zs at fhc with zs_fhc
279 file arch/sparc64/dev/zs.c zs
280 file dev/ic/z8530sc.c zs
284 attach zstty at zs
288 attach zskbd at zs
/openbsd-src/usr.sbin/rpki-client/
H A Dhttp.c109 z_stream zs; member
706 if (inflateInit2(&zctx->zs, MAX_WBITS + 32) != Z_OK) in http_inflate_new()
725 inflateEnd(&conn->zlibctx->zs); in http_inflate_free()
735 if (inflateReset(&conn->zlibctx->zs) != Z_OK) in http_inflate_done()
757 zctx->zs.next_in = conn->buf; in http_inflate_data()
758 zctx->zs.avail_in = bsz; in http_inflate_data()
759 zctx->zs.next_out = zctx->zbuf; in http_inflate_data()
760 zctx->zs.avail_out = zctx->zbufsz; in http_inflate_data()
762 switch ((rv = inflate(&zctx->zs, Z_NO_FLUSH))) { in http_inflate_data()
769 if (zctx->zs in http_inflate_data()
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/Unicode-Collate/t/
H A Dloc_hu.t61 ok($objHu->lt("z", "zs"));
62 ok($objHu->lt("zz", "zs"));
63 ok($objHu->lt("zs", "\x{292}"));
107 ok($objHu->eq("zs", "zS"));
153 ok($objHu->lt("zs", "zS"));
301 ok($objHu->gt("zs", "zS"));
/openbsd-src/sys/arch/alpha/alpha/
H A Dconf.c86 cdev_decl(zs);
148 cdev_tty_init(NZS,zs), /* 15: Z8530 serial interface */
/openbsd-src/share/man/man4/man4.alpha/
H A DMakefile4 lca.4 le.4 mem.4 mcbus.4 mcpcia.4 tcasic.4 tga.4 tsc.4 tsciic.4 zs.4
/openbsd-src/share/man/man4/man4.macppc/
H A DMakefile9 snapper.4 sysbutton.4 tumbler.4 xlights.4 zs.4
/openbsd-src/sys/dev/sun/
H A Dfiles.sun14 attach zsms at zs
/openbsd-src/regress/usr.bin/ssh/unittests/sshkey/testdata/
H A Ddsa_n_pw18 TR0PaEHDRNZqAX4YxqujnWrGKuRJhuz0eUvp7fZvbWHtiAMKV7368kkeUmkOHanb+TS+zs
/openbsd-src/sys/arch/macppc/include/
H A Dconf.h47 cdev_decl(zs);
/openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/
H A D2654.key12 zs/xXkplX2K1EglmV5ADEfbuU+zL7CbhMilFKBd/y6KYofEYwIWHwse9N1Xjftm2
H A D2925.key10 zs+5nRaCBNBYPNT8qNLKxa+fGdgwWmJGCrpAQLQ508B1XZ+2gaGAOKHn6t1tVgVc
H A D2208.key25 zs/WQzVGMzpbcCXAdCN32R9tQ9BFO55X3UcIDZkqqOaL+rhX/3lWxR1Saav0pbX2

12