| /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 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/external/cddl/osnet/dist/lib/libzpool/common/ |
| util.c | 69 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->vs_bytes[ZIO_TYPE_READ] / sec, rbytes) [all...] |
| /src/external/cddl/osnet/dist/lib/libzfs/common/ |
| libzfs_status.c | 76 vdev_missing(vdev_stat_t *vs, uint_t vsc) 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) 86 return (vs->vs_state == VDEV_STATE_FAULTED); 91 vdev_errors(vdev_stat_t *vs, uint_t vsc) 93 return (vs->vs_state == VDEV_STATE_DEGRADED || 94 vs->vs_read_errors != 0 || vs->vs_write_errors != 0 || 95 vs->vs_checksum_errors != 0) 134 vdev_stat_t *vs; local 199 vdev_stat_t *vs; local [all...] |
| /src/external/bsd/unbound/dist/services/ |
| view.c | 118 views_enter_view_name(struct views* vs, char* name) 127 lock_rw_wrlock(&vs->lock); 129 if(!rbtree_insert(&vs->vtree, &v->node)) { 133 lock_rw_unlock(&vs->lock); 136 lock_rw_unlock(&vs->lock); 141 views_apply_cfg(struct views* vs, struct config_file* cfg) 154 if(!(v = views_enter_view_name(vs, cv->name))) 221 views_find_view(struct views* vs, const char* name, int write) 227 lock_rw_rdlock(&vs->lock); 228 if(!(v = (struct view*)rbtree_search(&vs->vtree, &key.node))) [all...] |
| view.h | 132 * @param vs: views 137 struct view* views_find_view(struct views* vs, const char* name, int write); 141 * @param vs: the views tree. The routine locks and unlocks the structure 145 size_t views_get_mem(struct views* vs); 157 * @param vs: views tree 160 void views_swap_tree(struct views* vs, struct views* data);
|
| /src/external/bsd/unbound/dist/testcode/ |
| unitinfra.c | 72 int vs, to, lame, dnsseclame, reclame, probedelay; local 84 *now, &vs, &edns_lame, &to) ); 91 *now, &vs, &edns_lame, &to) ); 92 unit_assert( vs == 0 && to <= USEFUL_SERVER_TOP_TIMEOUT && edns_lame == 0 ); 94 unit_assert( vs == 0 && to == USEFUL_SERVER_TOP_TIMEOUT && edns_lame == 0 ); 125 int vs, to; local 138 &vs, &edns_lame, &to) ); 139 unit_assert( vs == 0 && to == init && edns_lame == 0 ); 144 now, &vs, &edns_lame, &to) ); 145 unit_assert( vs == 0 && to == init*2 && edns_lame == 0 ) [all...] |
| /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 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 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 1605 struct video_stream *vs = &sc->sc_stream_in; local 1666 struct video_stream *vs = &sc->sc_stream_in; local 1691 struct video_stream *vs = &sc->sc_stream_in; local 1719 struct video_stream *vs; local 1805 struct video_stream *vs; local 2365 struct video_stream *vs; local 2402 struct video_stream *vs; local [all...] |
| /src/lib/libc/stdio/ |
| fputs.c | 60 const void *vs = s; local 64 if (vs == NULL)
|
| puts.c | 61 const void *vs = s; local 65 if (vs == NULL)
|
| /src/sys/arch/amiga/dev/ |
| grf_cc.c | 195 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.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 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 676 struct uvideo_stream *vs; local 725 struct uvideo_stream *vs; local 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 [all...] |
| /src/external/apache2/llvm/autoconf/autoconf/m4/ |
| header_mmap_anonymous.m4 | 6 [AC_CACHE_CHECK(for MAP_ANONYMOUS vs. MAP_ANON,
|
| /src/external/gpl3/gdb/dist/sim/mips/ |
| mdmx.c | 937 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 >>= 8 1383 enum {vs, ss, vt} source; enumerator in enum:__anon19823::__anon19824 [all...] |
| /src/external/gpl3/gdb.old/dist/sim/mips/ |
| mdmx.c | 937 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 >>= 8 1383 enum {vs, ss, vt} source; enumerator in enum:__anon22562::__anon22563 [all...] |
| /src/lib/libc/rpc/ |
| xdr_float.c | 116 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;
|
| /src/external/lgpl3/mpfr/dist/src/ |
| sum.c | 188 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...] |
| /src/sys/arch/atari/dev/ |
| grf.c | 366 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.width [all...] |
| /src/crypto/external/bsd/heimdal/dist/cf/ |
| w32-check-exported-symbols.pl | 46 "vs=s" => \$vs_name, 53 open (my $vs, '<', $vs_name) or die $!; 59 while(<$vs>) 96 print "$k: Only in VS\n"; 101 close($vs); 120 --vs Name of version-script file
|
| /src/external/apache2/llvm/dist/libcxx/benchmarks/ |
| VariantBenchmarks.h | 49 [](auto... vs) { 50 return std::visit([](auto... is) { return (is.v + ... + 0); }, vs...);
|
| /src/external/bsd/ntp/dist/libntp/ |
| timexsup.c | 34 # warning inconsistent definitions of MOD_NANO vs STA_NANO
|
| /src/usr.bin/make/unit-tests/ |
| meta-cmd-cmp.exp | 16 vs 26 vs 32 vs 43 vs
|
| /src/external/bsd/jemalloc/dist/test/unit/ |
| ckh.c | 54 const char *ks, *vs; local 64 vs = (i & 2) ? strs[i] : (const char *)NULL; 67 expect_ptr_eq((void *)vs, (void *)v.s, "Value mismatch, i=%zu", 80 const char *ks, *vs; local 90 vs = (i & 2) ? strs[i] : (const char *)NULL; 93 expect_ptr_eq((void *)vs, (void *)v.s, "Value mismatch, i=%zu",
|