HomeSort by: relevance | last modified time | path
    Searched refs:vs (Results 1 - 25 of 176) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/sys/arch/arc/dev/
pccons.c 159 } 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.nchr = vs.ncol * vs.nrow
    [all...]
  /src/share/man/man4/man4.x68k/
Makefile 3 MAN= bmd.4 intio.4 intro.4 mfp.4 neptune.4 powsw.4 vs.4
  /src/sys/ddb/
db_print.c 52 struct db_variable vs; local in function:db_show_regs
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));
  /src/sys/dev/
video.c 314 #define video_stream_free_bufs(vs) \
315 video_stream_realloc_bufs((vs), 0)
1498 struct video_stream *vs = &sc->sc_stream_in; local in function:video_request_bufs
1505 vs->vs_type = req->type;
1514 err = video_stream_setup_bufs(vs,
1521 buf = vs->vs_buf[i]->vb_buf;
1538 struct video_stream *vs = &sc->sc_stream_in; local in function:video_query_buf
1540 if (buf->type != vs->vs_type)
1542 if (buf->index >= vs->vs_nbufs)
1545 memcpy(buf, vs->vs_buf[buf->index]->vb_buf, sizeof(*buf))
1555 struct video_stream *vs = &sc->sc_stream_in; local in function:video_queue_buf
1605 struct video_stream *vs = &sc->sc_stream_in; local in function:video_dequeue_buf
1666 struct video_stream *vs = &sc->sc_stream_in; local in function:video_stream_on
1691 struct video_stream *vs = &sc->sc_stream_in; local in function:video_stream_off
1719 struct video_stream *vs; local in function:videoopen
1805 struct video_stream *vs; local in function:videoread
2365 struct video_stream *vs; local in function:videopoll
2402 struct video_stream *vs; local in function:videommap
    [all...]
  /src/lib/libc/stdio/
fputs.c 60 const void *vs = s; local in function:fputs
64 if (vs == NULL)
puts.c 61 const void *vs = s; local in function:puts
65 if (vs == NULL)
  /src/sys/arch/amiga/dev/
grf_cc.c 195 struct view_size vs; local in function:grf_cc_on
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.height
    [all...]
view.c 190 view_setsize(struct view_softc *vu, struct view_size *vs)
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->x
    [all...]
  /src/sys/dev/usb/
uvideo.c 356 #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 in function:uvideo_attach
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, ifdesc, &iter)
659 struct uvideo_stream *vs; local in function:uvideo_childdet
676 struct uvideo_stream *vs; local in function:uvideo_detach
725 struct uvideo_stream *vs; local in function:uvideo_find_stream
1913 struct uvideo_stream *vs; local in function:uvideo_stream_recv_isoc_complete
1959 struct uvideo_stream *vs = addr; local in function:uvideo_stream_recv_bulk_transfer
2000 struct uvideo_stream *vs = addr; local in function:uvideo_open
2020 struct uvideo_stream *vs = addr; local in function:uvideo_close
2032 struct uvideo_stream *vs = addr; local in function:uvideo_get_devname
2040 struct uvideo_stream *vs = addr; local in function:uvideo_get_businfo
2048 struct uvideo_stream *vs = addr; local in function:uvideo_enum_format
2075 struct uvideo_stream *vs = addr; local in function:uvideo_get_format
2092 struct uvideo_stream *vs = addr; local in function:uvideo_set_format
2207 struct uvideo_stream *vs = addr; local in function:uvideo_try_format
2222 struct uvideo_stream *vs = addr; local in function:uvideo_get_framerate
2264 struct uvideo_stream *vs = addr; local in function:uvideo_start_transfer
2277 struct uvideo_stream *vs = addr; local in function:uvideo_stop_transfer
2291 struct uvideo_stream *vs = addr; local in function:uvideo_get_control_group
2352 struct uvideo_stream *vs = addr; local in function:uvideo_set_control_group
    [all...]
  /src/lib/libc/rpc/
xdr_float.c 116 struct vax_single vs, *vsp; local in function:xdr_float
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;
  /src/sys/arch/atari/dev/
grf.c 366 struct view_size vs; local in function:grf_viewsync
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.width
    [all...]
view.c 196 view_setsize(struct view_softc *vu, struct view_size *vs)
205 if (vs->x != vu->size.x || vs->y != vu->size.y)
208 if (vs->width != vu->size.width || vs->height != vu->size.height ||
209 vs->depth != vu->size.depth)
215 ns.width = vs->width;
216 ns.height = vs->height;
218 if ((dmode = grf_get_best_mode(&ns, vs->depth)) != NULL) {
225 new = grf_alloc_view(dmode, &ns, vs->depth)
    [all...]
  /src/usr.bin/make/unit-tests/
meta-cmd-cmp.exp 16 vs
26 vs
32 vs
43 vs
  /src/sys/arch/sparc/sparc/
pmap.c 501 * Translation table for kernel vs. PTE protection bits.
2030 int vr, int vs, struct mmuentry *mh)
2038 sp->sg_pmeg = pmeg = me_alloc(mh, pm, vr, vs);
2072 int vr, vs, bits; local in function:mmu_pagein
2084 vs = VA_VSEG(va);
2102 sp = &rp->rg_segmap[vs];
2116 mmu_pagein_seg(pm, sp, va, vr, vs, &segm_lru);
2371 int va, vr, vs; local in function:pv_changepte4_4c
2389 vs = VA_VSEG(va);
2391 sp = &rp->rg_segmap[vs];
2441 int pte, va, vr, vs, pmeg, flags; local in function:pv_syncflags4_4c
3085 int npte, zseg, vr, vs; local in function:pmap_bootstrap4_4c
4031 int vr, vs, vpg; local in function:pmap_alloc_cpu
4212 int vs, vr; local in function:pmap_quiet_check
4639 int vr, vs, s, ctx; local in function:pmap_remove
5045 int vr, vs, pteva, pte, *ptep; local in function:pmap_page_protect4_4c
5168 int va, nva, vr, vs; local in function:pmap_protect4_4c
5265 int vr, vs, newprot, ctx, pte, *ptep; local in function:pmap_changeprot4_4c
5354 int vr, vs, tpte; local in function:pmap_page_protect4m
5454 int s, vr, vs; local in function:pmap_protect4m
5650 int vr, vs, pte, s, inmmu; local in function:pmap_enk4_4c
5760 int vr, vs, *ptep, pte, pmeg, s; local in function:pmap_enu4_4c
5949 int vr, vs, s; local in function:pmap_kenter_pa4_4c
6020 int vr, vs; local in function:pmap_lockmmu
6053 int vr, vs, s, ctx; local in function:pmap_kremove4_4c
6253 int vr, vs, tpte, s; local in function:pmap_enk4m
6338 int vr, vs, *pte, tpte, s; local in function:pmap_enu4m
6537 int pteproto, vr, vs; local in function:pmap_kenter_pa4m
6563 int vr, vs; local in function:pmap_kremove4m
6672 int vr, vs, *ptep; local in function:pmap_unwire
6724 int vr, vs; local in function:pmap_extract4_4c
6767 int vr, vs, s, v = false; local in function:pmap_extract4m
7515 int cpu, n, vs, vr, j, m, *pte; local in function:pm_check_u
7604 int cpu, vr, vs, n; local in function:pm_check_k
8035 int startvr, endvr, vr, vs, i, n; local in function:pmap_dump
    [all...]
cache.h 220 #define cache_flush_segment(vr,vs,ctx) cpuinfo.vcache_flush_segment(vr,vs,ctx)
  /src/sys/arch/arm/broadcom/
bcm2835_genfb.c 142 bcmgenfb_ioctl(void *v, void *vs, u_long cmd, void *data, int flag, lwp_t *l)
167 return bcmgenfb_ioctl_handler(v, vs, cmd, data, flag, l);
173 bcmgenfb_mmap(void *v, void *vs, off_t offset, int prot)
  /src/sys/fs/nfs/nlm/
nlm_prot_impl.c 1762 fhandle_t *fhp, struct vfs_state *vs, accmode_t accmode)
1767 memset(vs, 0, sizeof(*vs));
1769 vs->vs_mp = vfs_getvfs(&fhp->fh_fsid);
1770 if (!vs->vs_mp) {
1776 error = VFS_CHECKEXP(vs->vs_mp,
1783 (vs->vs_mp->mnt_flag & MNT_RDONLY)) {
1789 error = VFS_FHTOVP(vs->vs_mp, &fhp->fh_fid, LK_EXCLUSIVE, &vs->vs_vp);
1792 vs->vs_vnlocked = TRUE
1867 struct vfs_state vs; local in function:nlm_do_test
1965 struct vfs_state vs; local in function:nlm_do_lock
2154 struct vfs_state vs; local in function:nlm_do_cancel
2244 struct vfs_state vs; local in function:nlm_do_unlock
    [all...]
  /src/lib/libkvm/
kvm_sparc.c 180 int vr, vs, pte; local in function:_kvm_kvatop44c
204 vs = VA_VSEG(va);
206 sp = &segmaps[(vr-nureg)*NSEGRG + vs];
228 int vr, vs; local in function:_kvm_kvatop4m
250 vs = VA_VSEG(va);
252 sp = &segmaps[(vr-nureg)*NSEGRG + vs];
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/instmem/
nouveau_nvkm_subdev_instmem_nv40.c 197 int ret, vs; local in function:nv40_instmem_oneinit
203 vs = hweight8((nvkm_rd32(device, 0x001540) & 0x0000ff00) >> 8);
204 if (device->chipset == 0x40) imem->base.reserved = 0x6aa0 * vs;
205 else if (device->chipset < 0x43) imem->base.reserved = 0x4f00 * vs;
206 else if (nv44_gr_class(device)) imem->base.reserved = 0x4980 * vs;
207 else imem->base.reserved = 0x4a40 * vs;
  /src/sys/arch/playstation2/ee/
gsreg.h 94 #define SYNCV(vs, vdp, vbpe, vbp, vfpe, vfp) \
95 (((u_int64_t)(vs) << 53) | \
  /src/sys/dev/hyperv/
genfb_vmbus.c 131 genfb_vmbus_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
145 genfb_vmbus_mmap(void *v, void *vs, off_t offset, int prot)
  /src/sys/arch/evbarm/gumstix/
gxlcd.c 185 gxlcd_ioctl(void *v, void *vs, u_long cmd, void *data, int flag, struct lwp *l)
199 res = pxa2x0_lcd_ioctl(v, vs, cmd, data, flag, l);
  /src/sys/arch/arm/s3c2xx0/
s3c24x0_lcd.h 114 int s3c24x0_lcd_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
dp.h 36 nvbios_dpcfg_match(struct nvkm_bios *, u16 outp, u8 pc, u8 vs, u8 pe,
  /src/sys/arch/arm/imx/
imx_genfb.c 138 imx_genfb_ioctl(void *v, void *vs, u_long cmd, void *data, int flag, lwp_t *l)
156 imx_genfb_mmap(void *v, void *vs, off_t offset, int prot)

Completed in 37 milliseconds

1 2 3 4 5 6 7 8