| /src/sys/arch/next68k/next68k/ |
| conf.c | 46 cons_decl(zs); variable 55 cons_init(zs),
|
| /src/sys/arch/x68k/x68k/ |
| conf.c | 54 cons_decl(zs); variable 61 cons_init(zs),
|
| /src/sys/arch/mac68k/mac68k/ |
| conf.c | 51 cons_decl(zs); variable 55 cons_init(zs),
|
| /src/external/cddl/osnet/dist/uts/common/zmod/ |
| zmod.c | 42 z_stream zs; local 45 bzero(&zs, sizeof (zs)); 46 zs.next_in = (uchar_t *)src; 47 zs.avail_in = srclen; 48 zs.next_out = dst; 49 zs.avail_out = *dstlen; 56 if ((err = inflateInit2(&zs, DEF_WBITS | 0x20)) != Z_OK) 59 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) { 60 (void) inflateEnd(&zs); 73 z_stream zs; local [all...] |
| /src/sys/arch/ews4800mips/stand/common/ |
| cons_zs.c | 40 struct zs zs; variable in typeref:struct:zs 53 zs.csr = (volatile uint8_t *)csr; 54 zs.data = (volatile uint8_t *)data; 55 zs.clock = clock; 63 #define ZS_WRITE_REG(zs, reg, val) \ 65 *zs.csr = reg; \ 66 *zs.csr = val; \ 73 ZS_WRITE_REG(zs, 9, 0); 74 ZS_WRITE_REG(zs, 9, ZSWR9_HARD_RESET) [all...] |
| console.h | 99 struct zs { struct 136 extern struct zs zs;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| flexible-array-member.c | 38 struct zero_size *zs; variable in typeref:struct:zero_size 50 zs = (struct zero_size *) malloc (sizeof (*zs) + 3 * sizeof (int)); 58 zs->n = 3; 59 zs->items[0] = 201; 60 zs->items[1] = 202; 61 zs->items[2] = 203;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| flexible-array-member.c | 38 struct zero_size *zs; variable in typeref:struct:zero_size 50 zs = (struct zero_size *) malloc (sizeof (*zs) + 3 * sizeof (int)); 58 zs->n = 3; 59 zs->items[0] = 201; 60 zs->items[1] = 202; 61 zs->items[2] = 203;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| flexible-array-member.c | 38 struct zero_size *zs; variable in typeref:struct:zero_size 50 zs = (struct zero_size *) malloc (sizeof (*zs) + 3 * sizeof (int)); 58 zs->n = 3; 59 zs->items[0] = 201; 60 zs->items[1] = 202; 61 zs->items[2] = 203;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| flexible-array-member.c | 38 struct zero_size *zs; variable in typeref:struct:zero_size 50 zs = (struct zero_size *) malloc (sizeof (*zs) + 3 * sizeof (int)); 58 zs->n = 3; 59 zs->items[0] = 201; 60 zs->items[1] = 202; 61 zs->items[2] = 203;
|
| /src/sys/arch/cobalt/stand/boot/ |
| zs.c | 1 /* $NetBSD: zs.c,v 1.4 2024/05/03 21:38:15 andvar Exp $ */ 40 #include "zs.h" 54 volatile uint8_t *zs = dev; local 57 val = *(volatile uint8_t *)(zs + reg); 66 volatile uint8_t *zs = dev; local 68 *(volatile uint8_t *)(zs + reg) = val; 129 void *zs; local 131 zs = (void *)MIPS_PHYS_TO_KSEG1(ZS_BASE + addr); 132 zs_reset(zs); 134 return zs; [all...] |
| /src/sys/arch/mvme68k/stand/sboot/ |
| console.c | 42 struct zs_hw *zs = (struct zs_hw *)CONS_ZS_ADDR; variable in typeref:struct:zs_hw 55 zs->ctl = 1; rr1 = zs->ctl; 56 zs->ctl = 0; 57 if ((rr1 & 0x1) == 1 && (zs->ctl & 0x4) == 4) 60 zs->ctl = 9; 61 zs->ctl = 0x00; /* clear interrupt */ 62 zs->ctl = 4; 63 zs->ctl = 0x44; /* 16x clk, 1 stop bit */ 64 zs->ctl = 5 [all...] |
| /src/external/bsd/libfido2/dist/src/ |
| compress.c | 48 z_stream zs; local 52 memset(&zs, 0, sizeof(zs)); 61 if ((z = inflateInit2(&zs, -MAX_WBITS)) != Z_OK) { 71 zs.next_in = in->ptr; 72 zs.avail_in = ilen; 73 zs.next_out = out->ptr; 74 zs.avail_out = olen; 76 if ((z = inflate(&zs, Z_FINISH)) != Z_STREAM_END) { 81 if (zs.avail_out != 0) 103 z_stream zs; local [all...] |
| /src/sys/arch/mvme68k/dev/ |
| zs_pcc.c | 83 * Is the zs chip present? 100 * Attach a found zs. 102 * Match slave number to zs unit number, so that misconfiguration will 110 struct zsdevice zs; local 122 /* XXX: This is a gross hack. I need to bus-space zs.c ... */ 123 zs.zs_chan_b.zc_csr = (volatile uint8_t *)bush; 124 zs.zs_chan_b.zc_data = (volatile uint8_t *)bush + 1; 125 zs.zs_chan_a.zc_csr = (volatile uint8_t *)bush + 2; 126 zs.zs_chan_a.zc_data = (volatile uint8_t *)bush + 3; 130 * Note that the vector is not actually used by the ZS chip o 190 struct zsdevice zs; local [all...] |
| zs_pcctwo.c | 86 * Is the zs chip present? 104 * Attach a found zs. 111 struct zsdevice zs; local 123 /* XXX: This is a gross hack. I need to bus-space zs.c ... */ 124 zs.zs_chan_b.zc_csr = (volatile uint8_t *)bush + 1; 125 zs.zs_chan_b.zc_data = (volatile uint8_t *)bush + 3; 126 zs.zs_chan_a.zc_csr = (volatile uint8_t *)bush + 5; 127 zs.zs_chan_a.zc_data = (volatile uint8_t *)bush + 7; 130 zs_config(zsc, &zs, vector + PCCTWO_VECBASE, PCLK_162); 172 struct zsdevice zs; local [all...] |
| /src/sys/arch/sgimips/stand/common/ |
| iris_zs.c | 60 * Most of the following was adapted from /sys/arch/sgimips/dev/zs.c. 61 * NetBSD: zs.c,v 1.39 2015/02/18 16:47:58 macallan Exp 169 struct zschan *zs; local 172 zs = zs_get_chan_addr(1, cons_port); 174 zs_reset(zs); 176 return zs; 182 struct zschan *zs; local 184 zs = zs_get_chan_addr(1, cons_port); 186 zs_putc(zs, c); 208 struct zschan *zs; local 236 struct zschan *zs; local [all...] |
| /src/lib/libc/gdtoa/ |
| dmisc.c | 122 ULong si, z, zs; local 158 zs = (si >> 16) * q + (ys >> 16); 159 carry = zs >> 16; 162 z = (*bx >> 16) - (zs & 0xffff) - borrow; 201 zs = (si >> 16) + (ys >> 16); 202 carry = zs >> 16; 205 z = (*bx >> 16) - (zs & 0xffff) - borrow;
|
| /src/sys/kern/ |
| kern_ctf.c | 200 z_stream zs; local 210 memset(&zs, 0, sizeof(zs)); 211 zs.zalloc = z_alloc; 212 zs.zfree = z_free; 214 if (inflateInit2(&zs, MAX_WBITS) != Z_OK) { 219 zs.avail_in = ctfsize - CTF_HDR_SIZE; 220 zs.next_in = ctfaddr + CTF_HDR_SIZE; 221 zs.avail_out = sz - CTF_HDR_SIZE; 222 zs.next_out = ((uint8_t *) ctftab) + CTF_HDR_SIZE [all...] |
| /src/lib/libm/src/ |
| s_fma.c | 193 double xs, ys, zs, adj; local 215 zs = frexp(z, &ez); 249 zs = ldexp(zs, -spread); 251 zs = copysign(DBL_MIN, zs); 264 r = dd_add(xy.hi, zs); 275 volatile double vzs = zs; /* XXX gcc CSE bug workaround */
|
| s_fmal.c | 178 long double xs, ys, zs, adj; local 200 zs = frexpl(z, &ez); 234 zs = ldexpl(zs, -spread); 236 zs = copysignl(LDBL_MIN, zs); 249 r = dd_add(xy.hi, zs); 260 volatile long double vzs = zs; /* XXX gcc CSE bug workaround */
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| dmu_zfetch.c | 132 dmu_zfetch_stream_remove(zfetch_t *zf, zstream_t *zs) 135 list_remove(&zf->zf_stream, zs); 136 mutex_destroy(&zs->zs_lock); 137 kmem_free(zs, sizeof (*zs)); 147 zstream_t *zs; local 152 while ((zs = list_head(&zf->zf_stream)) != NULL) 153 dmu_zfetch_stream_remove(zf, zs); 178 for (zstream_t *zs = list_head(&zf->zf_stream); 179 zs != NULL; zs = zs_next) 204 zstream_t *zs = kmem_zalloc(sizeof (*zs), KM_SLEEP); local 225 zstream_t *zs; local [all...] |
| /src/sys/arch/x68k/dev/ |
| zs.c | 1 /* $NetBSD: zs.c,v 1.48 2022/05/26 14:30:11 tsutsui Exp $ */ 43 __KERNEL_RCSID(0, "$NetBSD: zs.c,v 1.48 2022/05/26 14:30:11 tsutsui Exp $"); 85 * X68k provides a 5.0 MHz clock to the ZS chips. 139 * Is the zs chip present? 170 * Attach a found zs. 192 panic("zs: intio IO map corruption"); 274 if (intio_intr_establish(ia->ia_intr, "zs", zshard, zsc)) 310 * We do not need to look at all of the zs chips. 320 * Actually, zs hardware ipl is 5. 337 * Compute the current baud rate given a ZS channel 525 cons_decl(zs); variable [all...] |
| /src/sys/dev/tc/ |
| zs_ioasic.c | 110 * ZS chips are fed a 7.372 MHz clock. 196 * Is the zs chip present? 222 * Attach a found zs. 227 struct zsc_softc *zs = device_private(self); local 236 zs->zsc_dev = self; 264 zs->zsc_cs[channel] = cs; 265 zs->zsc_addroffset = d->iada_offset; /* cookie only */ 301 cs->cs_ctl_chan = zs->zsc_cs[0]; 327 zs_ioasic_hardintr, zs); 328 zs->zsc_sih = softint_establish(SOFTINT_SERIAL 372 struct zsc_softc *zs = device_private(parent); local [all...] |
| /src/external/bsd/libfido2/dist/tools/ |
| largeblob.c | 311 z_stream zs; local 315 memset(&zs, 0, sizeof(zs)); 323 if (inflateInit2(&zs, wbits) != Z_OK) 330 zs.next_in = in->ptr; 331 zs.avail_in = ilen; 332 zs.next_out = out.ptr; 333 zs.avail_out = olen; 335 if (inflate(&zs, Z_FINISH) != Z_STREAM_END) 337 if (zs.avail_out != 0 [all...] |
| /src/external/gpl2/rcs/dist/src/ |
| partime.c | 87 #define zs(t,s) {s, hr60(t)} macro 88 #define zd(t,s,d) zs(t, s), zs((t)+100, d) 91 zs(-1000, "hst"), /* Hawaii */ 100 zs( 000, "utc"), /* Coordinated Universal */ 101 zs( 000, "cut"), /* " */ 102 zs( 000, "ut"), /* Universal */ 103 zs( 000, "z"), /* Zulu (required by ISO 8601) */ 105 zs( 000, "wet"), /* Western Europe */ 106 zs( 100, "met"), /* Middle Europe * [all...] |