Searched refs:vs (Results 1 - 25 of 310) sorted by relevance

1234567891011>>

/netbsd-current/sys/arch/arc/dev/
H A Dpccons.c159 } vs; variable in typeref:struct:video_state
597 printf(": %s\n", vs.color ? "color" : "mono");
932 char *cp0 = (char *)crtat; *cp0++ = (c); *cp0 = (at); crtat++; vs.col++; \
991 vs.color = 0;
996 vs.color = 1;
1005 bios_display_info(&vs.col, &vs.row, &vs.ncol, &vs.nrow);
1006 vs
[all...]
/netbsd-current/share/man/man4/man4.x68k/
H A DMakefile3 MAN= bmd.4 intio.4 intro.4 mfp.4 neptune.4 powsw.4 vs.4
/netbsd-current/sys/ddb/
H A Ddb_print.c52 struct db_variable vs; local
57 vs = *regp;
58 vs.modif = modif;
59 db_read_variable(&vs, &value);
60 db_printf("%-12s%s", vs.name, db_num_to_str(value));
/netbsd-current/external/cddl/osnet/dist/lib/libzpool/common/
H A Dutil.c69 vdev_stat_t *vs; local
93 (uint64_t **)&vs, &c) != 0)
94 vs = &v0;
96 sec = MAX(1, vs->vs_timestamp / NANOSEC);
98 nicenum(vs->vs_alloc, used);
99 nicenum(vs->vs_space - vs->vs_alloc, avail);
100 nicenum(vs->vs_ops[ZIO_TYPE_READ] / sec, rops);
101 nicenum(vs->vs_ops[ZIO_TYPE_WRITE] / sec, wops);
102 nicenum(vs
[all...]
/netbsd-current/external/cddl/osnet/dist/lib/libzfs/common/
H A Dlibzfs_status.c76 vdev_missing(vdev_stat_t *vs, uint_t vsc) argument
78 return (vs->vs_state == VDEV_STATE_CANT_OPEN &&
79 vs->vs_aux == VDEV_AUX_OPEN_FAILED);
84 vdev_faulted(vdev_stat_t *vs, uint_t vsc) argument
86 return (vs->vs_state == VDEV_STATE_FAULTED);
91 vdev_errors(vdev_stat_t *vs, uint_t vsc) argument
93 return (vs->vs_state == VDEV_STATE_DEGRADED ||
94 vs->vs_read_errors != 0 || vs->vs_write_errors != 0 ||
95 vs
100 vdev_broken(vdev_stat_t *vs, uint_t vsc) argument
107 vdev_offlined(vdev_stat_t *vs, uint_t vsc) argument
114 vdev_removed(vdev_stat_t *vs, uint_t vsc) argument
120 vdev_non_native_ashift(vdev_stat_t *vs, uint_t vsc) argument
134 vdev_stat_t *vs; local
199 vdev_stat_t *vs; local
[all...]
/netbsd-current/external/bsd/unbound/dist/services/
H A Dview.c122 views_enter_view_name(struct views* vs, char* name) argument
131 lock_rw_wrlock(&vs->lock);
133 if(!rbtree_insert(&vs->vtree, &v->node)) {
137 lock_rw_unlock(&vs->lock);
140 lock_rw_unlock(&vs->lock);
145 views_apply_cfg(struct views* vs, struct config_file* cfg) argument
158 if(!(v = views_enter_view_name(vs, cv->name)))
225 views_find_view(struct views* vs, const char* name, int write) argument
231 lock_rw_rdlock(&vs->lock);
232 if(!(v = (struct view*)rbtree_search(&vs
[all...]
H A Dview.h130 * @param vs: views
135 struct view* views_find_view(struct views* vs, const char* name, int write);
/netbsd-current/lib/libc/stdio/
H A Dfputs.c60 const void *vs = s; local
64 if (vs == NULL)
H A Dputs.c61 const void *vs = s; local
65 if (vs == NULL)
/netbsd-current/sys/dev/
H A Dvideo.c313 #define video_stream_free_bufs(vs) \
314 video_stream_realloc_bufs((vs), 0)
1488 struct video_stream *vs = &sc->sc_stream_in; local
1495 vs->vs_type = req->type;
1504 err = video_stream_setup_bufs(vs,
1511 buf = vs->vs_buf[i]->vb_buf;
1528 struct video_stream *vs = &sc->sc_stream_in; local
1530 if (buf->type != vs->vs_type)
1532 if (buf->index >= vs->vs_nbufs)
1535 memcpy(buf, vs
1545 struct video_stream *vs = &sc->sc_stream_in; local
1595 struct video_stream *vs = &sc->sc_stream_in; local
1656 struct video_stream *vs = &sc->sc_stream_in; local
1681 struct video_stream *vs = &sc->sc_stream_in; local
1709 struct video_stream *vs; local
1795 struct video_stream *vs; local
2332 struct video_stream *vs; local
2369 struct video_stream *vs; local
2385 video_stream_init(struct video_stream *vs) argument
2409 video_stream_fini(struct video_stream *vs) argument
2425 video_stream_setup_bufs(struct video_stream *vs, enum video_stream_method method, uint8_t nbufs) argument
2468 video_stream_teardown_bufs(struct video_stream *vs) argument
2527 video_stream_realloc_bufs(struct video_stream *vs, uint8_t nbufs) argument
2594 video_stream_enqueue(struct video_stream *vs, struct video_buffer *vb) argument
2613 video_stream_dequeue(struct video_stream *vs) argument
2640 video_stream_write(struct video_stream *vs, const struct video_payload *payload) argument
2696 video_stream_sample_done(struct video_stream *vs) argument
[all...]
/netbsd-current/sys/arch/amiga/dev/
H A Dgrf_cc.c195 struct view_size vs; local
212 if ((*view_cdevsw.d_ioctl)(0, VIOCGSIZE, (void *)&vs, -1, NULL)) {
213 /* XXX type of vs ? */
215 vs.width = 640;
216 vs.height = 400;
217 vs.depth = 2;
219 gi->gd_colors = 1 << vs.depth;
220 gi->gd_planes = vs.depth;
222 gi->gd_fbwidth = vs.width;
223 gi->gd_fbheight = vs
[all...]
H A Dview.c190 view_setsize(struct view_softc *vu, struct view_size *vs) argument
198 if (vs->x != vu->size.x || vs->y != vu->size.y)
201 if (vs->width != vu->size.width || vs->height != vu->size.height ||
202 vs->depth != vu->size.depth)
208 ns.width = vs->width;
209 ns.height = vs->height;
211 new = grf_alloc_view(NULL, &ns, vs->depth);
224 vu->size.x = vs
[all...]
/netbsd-current/sys/dev/usb/
H A Duvideo.c356 #define uvideo_stream_probe(vs, act, data) \
357 (uvideo_stream_probe_and_commit((vs), (act), \
359 #define uvideo_stream_commit(vs, act, data) \
360 (uvideo_stream_probe_and_commit((vs), (act), \
498 struct uvideo_stream *vs; local
561 vs = uvideo_find_stream(sc, ifdesc->bInterfaceNumber);
562 if (vs == NULL) {
563 vs = uvideo_stream_alloc();
564 err = uvideo_stream_init(vs, sc, ifdesc);
573 err = uvideo_stream_init_desc(vs, ifdes
659 struct uvideo_stream *vs; local
676 struct uvideo_stream *vs; local
725 struct uvideo_stream *vs; local
758 uvideo_stream_guess_format(struct uvideo_stream *vs, enum video_pixel_format pixel_format, uint32_t width, uint32_t height) argument
1055 uvideo_stream_init(struct uvideo_stream *vs, struct uvideo_softc *sc, const usb_interface_descriptor_t *ifdesc) argument
1136 uvideo_stream_init_desc(struct uvideo_stream *vs, const usb_interface_descriptor_t *ifdesc, usbd_desc_iter_t *iter) argument
1282 uvideo_stream_free(struct uvideo_stream *vs) argument
1320 uvideo_stream_init_frame_based_format(struct uvideo_stream *vs, const uvideo_descriptor_t *format_desc, usbd_desc_iter_t *iter) argument
1584 uvideo_stream_start_xfer(struct uvideo_stream *vs) argument
1745 uvideo_stream_stop_xfer(struct uvideo_stream *vs) argument
1836 uvideo_stream_recv_isoc_start(struct uvideo_stream *vs) argument
1876 uvideo_stream_recv_process(struct uvideo_stream *vs, uint8_t *buf, uint32_t len) argument
1913 struct uvideo_stream *vs; local
1959 struct uvideo_stream *vs = addr; local
2000 struct uvideo_stream *vs = addr; local
2020 struct uvideo_stream *vs = addr; local
2032 struct uvideo_stream *vs = addr; local
2040 struct uvideo_stream *vs = addr; local
2048 struct uvideo_stream *vs = addr; local
2075 struct uvideo_stream *vs = addr; local
2092 struct uvideo_stream *vs = addr; local
2207 struct uvideo_stream *vs = addr; local
2222 struct uvideo_stream *vs = addr; local
2264 struct uvideo_stream *vs = addr; local
2277 struct uvideo_stream *vs = addr; local
2291 struct uvideo_stream *vs = addr; local
2352 struct uvideo_stream *vs = addr; local
2432 uvideo_stream_probe_and_commit(struct uvideo_stream *vs, uint8_t action, uint8_t control, void *data) argument
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/cf/
H A Dw32-check-exported-symbols.pl46 "vs=s" => \$vs_name,
53 open (my $vs, '<', $vs_name) or die $!;
59 while(<$vs>)
101 close($vs);
120 --vs Name of version-script file
/netbsd-current/external/gpl3/gdb.old/dist/sim/mips/
H A Dmdmx.c934 unsigned64 vs,
944 signed32 s = (signed16)(vs & 0xFFFF);
946 vs >>= 16; vt >>= 16;
952 signed16 s = (signed8)(vs & 0xFF);
954 vs >>= 8; vt >>= 8;
966 unsigned64 vs)
975 signed32 s = (signed16)(vs & 0xFFFF);
978 vs >>= 16;
985 ACC.ob[i] |= ((signed24)(vs & 0xFF) << 16);
986 vs >>
931 mdmx_wacl(sim_cpu *cpu, address_word cia, int fmt, unsigned64 vs, unsigned64 vt) argument
963 mdmx_wach(sim_cpu *cpu, address_word cia, int fmt, unsigned64 vs) argument
1380 enum {vs, ss, vt} source; enumerator in enum:__anon3064::__anon3065
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/mips/
H A Dmdmx.c937 uint64_t vs,
947 int32_t s = (int16_t)(vs & 0xFFFF);
949 vs >>= 16; vt >>= 16;
955 int16_t s = (int8_t)(vs & 0xFF);
957 vs >>= 8; vt >>= 8;
969 uint64_t vs)
978 int32_t s = (int16_t)(vs & 0xFFFF);
981 vs >>= 16;
988 ACC.ob[i] |= ((signed24)(vs & 0xFF) << 16);
989 vs >>
934 mdmx_wacl(sim_cpu *cpu, address_word cia, int fmt, uint64_t vs, uint64_t vt) argument
966 mdmx_wach(sim_cpu *cpu, address_word cia, int fmt, uint64_t vs) argument
1383 enum {vs, ss, vt} source; enumerator in enum:__anon2518::__anon2519
[all...]
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dsum.c188 mp_size_t ds, vs, vds; local
197 vs = MPFR_PREC2LIMBS (xq);
198 vd = xe - vs * GMP_NUMB_BITS - minexp;
247 vs -= vds;
248 MPFR_ASSERTD (vs > 0); /* see xe <= minexp test above */
255 vs -= (xe - maxexp) / GMP_NUMB_BITS;
256 MPFR_ASSERTD (vs > 0);
264 MPFR_ASSERTD (vs <= ts);
265 mpn_rshift (tp, vp, vs, vd);
270 vs
[all...]
/netbsd-current/lib/libc/rpc/
H A Dxdr_float.c116 struct vax_single vs, *vsp; local
126 vs = *((struct vax_single *)(void *)fp);
130 if ((vs.mantissa2 == lim->s.mantissa2) &&
131 (vs.exp == lim->s.exp) &&
132 (vs.mantissa1 == lim->s.mantissa1)) {
137 is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS;
138 is.mantissa = (vs.mantissa1 << 16) | vs.mantissa2;
140 is.sign = vs.sign;
/netbsd-current/sys/arch/atari/dev/
H A Dgrf.c366 struct view_size vs; local
387 if ((*view_cdevsw.d_ioctl)(gp->g_viewdev, VIOCGSIZE, (void *)&vs, 0,
393 vs.width = 640;
394 vs.height = 400;
395 vs.depth = 1;
397 gi->gd_colors = 1 << vs.depth;
398 gi->gd_planes = vs.depth;
400 gi->gd_fbwidth = vs.width;
401 gi->gd_fbheight = vs.height;
404 gi->gd_dyn.gdi_dwidth = vs
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A DVariantBenchmarks.h49 [](auto... vs) {
50 return std::visit([](auto... is) { return (is.v + ... + 0); }, vs...);
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mips/
H A Daent-mdebug-2.d13 # vs:
H A Daent-2.d12 # vs:
H A Ddebug-label-end-2.d13 # vs:
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Dtimexsup.c21 # warning inconsistent definitions of MOD_NANO vs STA_NANO
/netbsd-current/usr.bin/make/unit-tests/
H A Dmeta-cmd-cmp.exp16 vs
26 vs
32 vs
43 vs

Completed in 557 milliseconds

1234567891011>>