| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ | 
| H A D | HexagonPatternsHVX.td | 46 def Combinev: OutPatFrag<(ops node:$Vs, node:$Vt),47   (REG_SEQUENCE HvxWR, $Vs, vsub_hi, $Vt, vsub_lo)>;
 57 def LoVec: OutPatFrag<(ops node:$Vs), (EXTRACT_SUBREG $Vs, vsub_lo)>;
 58 def HiVec: OutPatFrag<(ops node:$Vs), (EXTRACT_SUBREG $Vs, vsub_hi)>;
 72 def VSxtb: OutPatFrag<(ops node:$Vs), (V6_vunpackb  $Vs)>;
 73 def VSxth: OutPatFrag<(ops node:$Vs), (V6_vunpackh  $Vs)>;
 74 def VZxtb: OutPatFrag<(ops node:$Vs), (V6_vunpackub $Vs)>;
 75 def VZxth: OutPatFrag<(ops node:$Vs), (V6_vunpackuh $Vs)>;
 78   OutPatFrag<(ops node:$Imm, node:$Vs), (VSub (VSplati (i32 $Imm)), $Vs)>;
 84 def VNegb: OutPatFrag<(ops node:$Vs), (VSubib 0, $Vs)>;
 [all …]
 
 | 
| /freebsd/usr.sbin/bhyve/ | 
| H A D | virtio.c | 61 #define	DEV_SOFTC(vs) ((void *)(vs))  argument68 vi_softc_linkup(struct virtio_softc *vs, struct virtio_consts *vc,  in vi_softc_linkup()  argument
 74 	/* vs and dev_softc addresses must match */  in vi_softc_linkup()
 75 	assert((void *)vs == dev_softc);  in vi_softc_linkup()
 76 	vs->vs_vc = vc;  in vi_softc_linkup()
 77 	vs->vs_pi = pi;  in vi_softc_linkup()
 78 	pi->pi_arg = vs;  in vi_softc_linkup()
 80 	vs->vs_queues = queues;  in vi_softc_linkup()
 82 		queues[i].vq_vs = vs;  in vi_softc_linkup()
 97 vi_reset_dev(struct virtio_softc *vs)  in vi_reset_dev()  argument
 [all …]
 
 | 
| H A D | virtio.h | 247 #define	VS_LOCK(vs)							\  argument 249 	if (vs->vs_mtx)							\
 250 		pthread_mutex_lock(vs->vs_mtx);				\
 253 #define	VS_UNLOCK(vs)							\  argument
 255 	if (vs->vs_mtx)							\
 256 		pthread_mutex_unlock(vs->vs_mtx);			\
 284  * vs->vs_vc->vc_reset(); then the data structure below is
 285  * reinitialized (for each virtqueue: vs->vs_vc->vc_nvq).
 352 vi_interrupt(struct virtio_softc *vs, uint8_t isr, uint16_t msix_idx) in vi_interrupt()   argument
 355 	if (pci_msix_enabled(vs in vi_interrupt()
 373 vq_interrupt(struct virtio_softc * vs,struct vqueue_info * vq) vq_interrupt()  argument
 [all...]
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ | 
| H A D | Scalarizer.cpp | 133             const VectorSplit &VS, ValueVector *cachePtr = nullptr);139   unsigned size() const { return VS.NumFragments; }  in size()
 145   VectorSplit VS;  member in __anon7628c1430111::Scatterer
 212   VectorSplit VS;  member
 222 /// described in @p VS.
 224                           const VectorSplit &VS, Twine Name) {  in concatenate()  argument
 225   unsigned NumElements = VS.VecTy->getNumElements();  in concatenate()
 229   if (VS.NumPacked > 1) {  in concatenate()
 233     for (unsigned I = 0; I < VS.NumPacked; ++I)  in concatenate()
 241   Value *Res = PoisonValue::get(VS.VecTy);  in concatenate()
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ | 
| H A D | ThreadSafetyTIL.h | 173   ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS)  in ValueType()174       : Base(B), Size(Sz), Signed(S), VectSize(VS) {}  in ValueType()
 289   // typename V::R_SExpr traverse(V &Vs, typename V::R_Ctx Ctx) {
 407   typename V::R_SExpr traverse(V &Vs, typename V::R_Ctx Ctx) {  in traverse()  argument
 409     return Vs.reduceVariableRef(this);  in traverse()
 467   typename V::R_SExpr traverse(V &Vs, typename V::R_Ctx Ctx) {  in traverse()  argument
 469     return Vs.traverse(Result, Ctx);  in traverse()
 499   typename V::R_SExpr traverse(V &Vs, typename V::R_Ctx Ctx) {  in traverse()  argument
 500     return Vs.reduceUndefined(*this);  in traverse()
 520   template <class V> typename V::R_SExpr traverse(V &Vs, typename V::R_Ctx Ctx) {  in traverse()  argument
 [all …]
 
 | 
| /freebsd/sys/contrib/openzfs/lib/libzfs/ | 
| H A D | libzfs_status.c | 101 vdev_missing(vdev_stat_t *vs, uint_t vsc, void *arg)  in vdev_missing()  argument104 	return (vs->vs_state == VDEV_STATE_CANT_OPEN &&  in vdev_missing()
 105 	    vs->vs_aux == VDEV_AUX_OPEN_FAILED);  in vdev_missing()
 109 vdev_faulted(vdev_stat_t *vs, uint_t vsc, void *arg)  in vdev_faulted()  argument
 112 	return (vs->vs_state == VDEV_STATE_FAULTED);  in vdev_faulted()
 116 vdev_errors(vdev_stat_t *vs, uint_t vsc, void *arg)  in vdev_errors()  argument
 119 	return (vs->vs_state == VDEV_STATE_DEGRADED ||  in vdev_errors()
 120 	    vs->vs_read_errors != 0 || vs->vs_write_errors != 0 ||  in vdev_errors()
 121 	    vs->vs_checksum_errors != 0);  in vdev_errors()
 125 vdev_broken(vdev_stat_t *vs, uint_t vsc, void *arg)  in vdev_broken()  argument
 [all …]
 
 | 
| /freebsd/sys/net/ | 
| H A D | vnet.c | 115  * vs. modules in similar but different ways.  In both cases, virtualized514 	struct vnet_sysinit *vs, *vs2;  in vnet_register_sysinit()  local
 517 	vs = arg;  in vnet_register_sysinit()
 518 	KASSERT(vs->subsystem > SI_SUB_VNET, ("vnet sysinit too early"));  in vnet_register_sysinit()
 523 		if (vs2->subsystem > vs->subsystem)  in vnet_register_sysinit()
 525 		if (vs2->subsystem == vs->subsystem && vs2->order > vs->order)  in vnet_register_sysinit()
 529 		TAILQ_INSERT_BEFORE(vs2, vs, link);  in vnet_register_sysinit()
 531 		TAILQ_INSERT_TAIL(&vnet_constructors, vs, link);  in vnet_register_sysinit()
 540 		vs->func(vs->arg);  in vnet_register_sysinit()
 550 	struct vnet_sysinit *vs;  in vnet_deregister_sysinit()  local
 [all …]
 
 | 
| /freebsd/tools/tools/vimage/ | 
| H A D | vimage.c | 323 getjail(vstat_t *vs, int lastjid, int verbose)  in getjail()  argument329 	bzero(vs, sizeof(*vs));  in getjail()
 335 	jailparam_import_raw(¶ms[psize++], &vs->vnet, sizeof(vs->vnet));  in getjail()
 338 	jailparam_import_raw(¶ms[psize++], &vs->name, sizeof(vs->name));  in getjail()
 344 	jailparam_import_raw(¶ms[psize++], &vs->path, sizeof(vs->path));  in getjail()
 347 	jailparam_import_raw(¶ms[psize++], &vs->hostname,  in getjail()
 348 	    sizeof(vs->hostname));  in getjail()
 351 	jailparam_import_raw(¶ms[psize++], &vs->domainname,  in getjail()
 352 	    sizeof(vs->domainname));  in getjail()
 355 	jailparam_import_raw(¶ms[psize++], &vs->childcnt,  in getjail()
 [all …]
 
 | 
| /freebsd/contrib/unbound/testcode/ | 
| H A D | unitinfra.c | 72 	int vs, to, lame, dnsseclame, reclame, probedelay;  in test_keep_probing()  local84 			*now, &vs, &edns_lame, &to) );  in test_keep_probing()
 91 			*now, &vs, &edns_lame, &to) );  in test_keep_probing()
 92 		unit_assert( vs == 0 && to <= USEFUL_SERVER_TOP_TIMEOUT && edns_lame == 0 );  in test_keep_probing()
 94 	unit_assert( vs == 0 && to == USEFUL_SERVER_TOP_TIMEOUT && edns_lame == 0 );  in test_keep_probing()
 125 	int vs, to;  in infra_test()  local
 138 		&vs, &edns_lame, &to) );  in infra_test()
 139 	unit_assert( vs == 0 && to == init && edns_lame == 0 );  in infra_test()
 144 			now, &vs, &edns_lame, &to) );  in infra_test()
 145 	unit_assert( vs == 0 && to == init*2 && edns_lame == 0 );  in infra_test()
 [all …]
 
 | 
| /freebsd/sys/contrib/openzfs/lib/libzpool/ | 
| H A D | util.c | 49 	vdev_stat_t *vs;  in show_vdev_stats()  local76 		    (uint64_t **)&vs, &c) != 0)  in show_vdev_stats()
 77 			vs = v0;  in show_vdev_stats()
 87 		sec = MAX(1, vs->vs_timestamp / NANOSEC);  in show_vdev_stats()
 89 		nicenum(vs->vs_alloc, used, sizeof (used));  in show_vdev_stats()
 90 		nicenum(vs->vs_space - vs->vs_alloc, avail, sizeof (avail));  in show_vdev_stats()
 91 		nicenum(vs->vs_ops[ZIO_TYPE_READ] / sec, rops, sizeof (rops));  in show_vdev_stats()
 92 		nicenum(vs->vs_ops[ZIO_TYPE_WRITE] / sec, wops, sizeof (wops));  in show_vdev_stats()
 93 		nicenum(vs->vs_bytes[ZIO_TYPE_READ] / sec, rbytes,  in show_vdev_stats()
 95 		nicenum(vs->vs_bytes[ZIO_TYPE_WRITE] / sec, wbytes,  in show_vdev_stats()
 [all …]
 
 | 
| /freebsd/sys/kern/ | 
| H A D | subr_stats.c | 78 #define	VS_INCERRS(vs) do {						\  argument79 	if ((vs)->errs < (1U << VS_EBITS) - 1)				\
 80 		(vs)->errs++;						\
 104  * - Compressed voi array (trade off memory usage vs search time)
 153     struct voistat *vs, struct sb_iter_ctx *ctx);
 1424 	struct voistat *vs;  local
 1434 	vs = BLOB_OFFSET(sb, v->stats_off + (stype * sizeof(struct voistat)));
 1435 	*retvsd = BLOB_OFFSET(sb, vs->data_off);
 1437 		*retdtype = vs->dtype;
 1439 		*retvsdsz = vs->dsz;
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ | 
| H A D | DiagnosticInstallAPIKinds.td | 58 def err_architecture_mismatch : Error<"architectures do not match: '%0' (provided) vs '%1' (found)"…59 def warn_platform_mismatch : Warning<"platform does not match: '%0' (provided) vs '%1' (found)">, I…
 60 def err_platform_mismatch : Error<"platform does not match: '%0' (provided) vs '%1' (found)">;
 61 def err_install_name_mismatch : Error<"install_name does not match: '%0' (provided) vs '%1' (found)…
 62 def err_current_version_mismatch : Error<"current_version does not match: '%0' (provided) vs '%1' (…
 63 …_version_mismatch : Error<"compatibility_version does not match: '%0' (provided) vs '%1' (found)">;
 64 …match : Error<"the ApplicationExtensionSafe flag does not match: '%0' (provided) vs '%1' (found)">;
 65 …mismatch : Error<"the NotForDyldSharedCache flag does not match: '%0' (provided) vs '%1' (found)">;
 68 def err_parent_umbrella_mismatch : Error<"parent umbrella does not match: '%0' (provided) vs '%1' (…
 70 …_libraries_mismatch : Error<"re-exported libraries do not match: '%0' (provided) vs '%1' (found)">;
 [all …]
 
 | 
| /freebsd/contrib/unbound/services/ | 
| H A D | view.c | 118 views_enter_view_name(struct views* vs, char* name) in view_create() 127 	lock_rw_wrlock(&vs->lock); in views_enter_view_name()
 129 	if(!rbtree_insert(&vs->vtree, &v->node)) { in views_enter_view_name()
 133 		lock_rw_unlock(&vs->lock); in views_enter_view_name()
 136 	lock_rw_unlock(&vs->lock); in views_enter_view_name()
 141 views_apply_cfg(struct views* vs, struct config_file* cfg) in views_enter_view_name()
 154 		if(!(v = views_enter_view_name(vs, cv->name))) in views_apply_cfg()
 221 views_find_view(struct views* vs, const char* name, int write) in views_apply_cfg()
 227 	lock_rw_rdlock(&vs->lock); in views_find_view()
 228 	if(!(v = (struct view*)rbtree_search(&vs in views_find_view()
 122 views_enter_view_name(struct views * vs,char * name) views_enter_view_name()  argument
 145 views_apply_cfg(struct views * vs,struct config_file * cfg) views_apply_cfg()  argument
 225 views_find_view(struct views * vs,const char * name,int write) views_find_view()  argument
 [all...]
 | 
| /freebsd/sys/contrib/device-tree/Bindings/hwmon/ | 
| H A D | lm75.yaml | 49   vs-supply:50     description: phandle to the regulator that provides the +VS supply
 86         vs-supply = <&vs>;
 98         vs-supply = <&vs>;
 
 | 
| /freebsd/sys/nlm/ | 
| H A D | nlm_prot_impl.c | 1757     fhandle_t *fhp, struct vfs_state *vs, accmode_t accmode)  in nlm_get_vfs_state()  argument1763 	memset(vs, 0, sizeof(*vs));  in nlm_get_vfs_state()
 1765 	vs->vs_mp = vfs_getvfs(&fhp->fh_fsid);  in nlm_get_vfs_state()
 1766 	if (!vs->vs_mp) {  in nlm_get_vfs_state()
 1772 		error = VFS_CHECKEXP(vs->vs_mp,  in nlm_get_vfs_state()
 1779 		    (vs->vs_mp->mnt_flag & MNT_RDONLY)) {  in nlm_get_vfs_state()
 1785 	error = VFS_FHTOVP(vs->vs_mp, &fhp->fh_fid, LK_EXCLUSIVE, &vs->vs_vp);  in nlm_get_vfs_state()
 1788 	vs->vs_vnlocked = TRUE;  in nlm_get_vfs_state()
 1804 		error = VOP_ACCESS(vs->vs_vp, accmode, cred, curthread);  in nlm_get_vfs_state()
 1811 			error = VOP_ACCESS(vs->vs_vp, VWRITE, cred, curthread);  in nlm_get_vfs_state()
 [all …]
 
 | 
| /freebsd/lib/libc/xdr/ | 
| H A D | xdr_float.c | 97 	struct vax_single vs, *vsp;  in xdr_float()  local107 		vs = *((struct vax_single *)fp);  in xdr_float()
 110 			if ((vs.mantissa2 == lim->s.mantissa2) &&  in xdr_float()
 111 				(vs.exp == lim->s.exp) &&  in xdr_float()
 112 				(vs.mantissa1 == lim->s.mantissa1)) {  in xdr_float()
 117 		is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS;  in xdr_float()
 118 		is.mantissa = (vs.mantissa1 << 16) | vs.mantissa2;  in xdr_float()
 120 		is.sign = vs.sign;  in xdr_float()
 
 | 
| /freebsd/tests/sys/compat32/aarch64/ | 
| H A D | swp_cond_test_impl.S | 121 	/* vs */135 	/* !vs */
 145 	movw r0, :lower16:.L.vs
 146 	movt r0, :upper16:.L.vs
 147 	ldr r1, =(.L.vsEnd - .L.vs - 1)
 394 .L.vs:
 395 	.asciz "vs"
 397 	.size .L.vs, .L.vsEnd - .L.vs
 
 | 
| /freebsd/crypto/krb5/src/lib/rpc/ | 
| H A D | xdr_float.c | 93 	struct vax_single vs, *vsp;  in xdr_float()  local106 		vs = *((struct vax_single *)fp);  in xdr_float()
 110 			if ((vs.mantissa2 == lim->s.mantissa2) &&  in xdr_float()
 111 				(vs.exp == lim->s.exp) &&  in xdr_float()
 112 				(vs.mantissa1 == lim->s.mantissa1)) {  in xdr_float()
 117 		is.exp = vs.exp - VAX_SNG_BIAS + IEEE_SNG_BIAS;  in xdr_float()
 118 		is.mantissa = (vs.mantissa1 << 16) | vs.mantissa2;  in xdr_float()
 120 		is.sign = vs.sign;  in xdr_float()
 
 | 
| /freebsd/crypto/openssl/test/recipes/ | 
| H A D | 20-test_dgst.t | 183 …ok($macdata[0] =~ $expected, "SHA1: Check HASH value is as expected ($macdata[0]) vs ($expected)");196 …ok($hmacdata[0] =~ $expected, "HMAC: Check HMAC value is as expected ($hmacdata[0]) vs ($expected)…
 198        "HMAC: Check second HMAC value is consistent with the first ($hmacdata[1]) vs ($expected)");
 210 …ok($hmacdata[0] =~ $expected, "HMAC: Check HMAC value is as expected ($hmacdata[0]) vs ($expected)…
 212        "HMAC: Check second HMAC value is consistent with the first ($hmacdata[1]) vs ($expected)");
 225 …ok($hmacdata[0] =~ $expected, "HMAC: Check HMAC value is as expected ($hmacdata[0]) vs ($expected)…
 227        "HMAC: Check second HMAC value is consistent with the first ($hmacdata[1]) vs ($expected)");
 239 …ok($xofdata[0] =~ $expected, "XOF: Check digest value is as expected ($xofdata[0]) vs ($expected)"…
 241        "XOF: Check second digest value is consistent with the first ($xofdata[1]) vs ($expected)");
 
 | 
| /freebsd/share/doc/papers/timecounter/ | 
| H A D | tmac.usenix | 4 .nr VS 1122 .vs \n(VS
 96 . vs \\n(VVu
 102 . vs
 169 .vs \\n(VS
 307 .vs \\n(VS
 451 .vs \\n(VS
 
 | 
| /freebsd/usr.sbin/jail/ | 
| H A D | config.c | 137 	struct cfstring *s, *vs, *ns;  in load_config()  local222 				TAILQ_FOREACH(vs, &vp->val, tq)  in load_config()
 223 					if (!STAILQ_EMPTY(&vs->vars)) {  in load_config()
 231 				vs = TAILQ_FIRST(&vp->val);  in load_config()
 232 				if (TAILQ_NEXT(vs, tq) != NULL &&  in load_config()
 240 				s->s = erealloc(s->s, s->len + vs->len + 1);  in load_config()
 241 				memmove(s->s + v->pos + vs->len,  in load_config()
 244 				memcpy(s->s + v->pos, vs->s, vs->len);  in load_config()
 247 					vv->pos += vs->len;  in load_config()
 248 				s->len += vs->len;  in load_config()
 [all …]
 
 | 
| /freebsd/sys/contrib/openzfs/cmd/zpool_influxdb/ | 
| H A D | zpool_influxdb.c | 343 	vdev_stat_t *vs;  in print_summary_stats()  local347 	    (uint64_t **)&vs, &c) != 0) {  in print_summary_stats()
 351 	    pool_name, zpool_state_to_name((vdev_state_t)vs->vs_state,  in print_summary_stats()
 352 	    (vdev_aux_t)vs->vs_aux), vdev_desc);  in print_summary_stats()
 353 	print_kv("alloc", vs->vs_alloc);  in print_summary_stats()
 354 	print_kv(",free", vs->vs_space - vs->vs_alloc);  in print_summary_stats()
 355 	print_kv(",size", vs->vs_space);  in print_summary_stats()
 356 	print_kv(",read_bytes", vs->vs_bytes[ZIO_TYPE_READ]);  in print_summary_stats()
 357 	print_kv(",read_errors", vs->vs_read_errors);  in print_summary_stats()
 358 	print_kv(",read_ops", vs->vs_ops[ZIO_TYPE_READ]);  in print_summary_stats()
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ | 
| H A D | AllocatorList.h | 42     template <class... Ts> Node(Ts &&... Vs) : V(std::forward<Ts>(Vs)...) {}  in Node()179   template <class... Ts> iterator emplace(iterator I, Ts &&... Vs) {  in emplace()  argument
 180     return iterator(List.insert(I.wrapped(), *create(std::forward<Ts>(Vs)...)));  in emplace()
 212   template <class... Ts> void emplace_back(Ts &&... Vs) {  in emplace_back()  argument
 213     emplace(end(), std::forward<Ts>(Vs)...);  in emplace_back()
 215   template <class... Ts> void emplace_front(Ts &&... Vs) {  in emplace_front()  argument
 216     emplace(begin(), std::forward<Ts>(Vs)...);  in emplace_front()
 
 | 
| /freebsd/contrib/bmake/unit-tests/ | 
| H A D | meta-cmd-cmp.exp | 16 vs26 vs
 32 vs
 43 vs
 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ | 
| H A D | RISCVInstrInfoV.td | 379 // vs<nf>r.v vd, (rs1)804   def _VS : VALUVV<funct6, OPMVV, opcodestr # ".vs">,
 809   def _VS : VALUVV<funct6, OPMVV, opcodestr # ".vs">,
 814   def _VS : VALUVV<funct6, OPIVV, opcodestr # ".vs">,
 819   def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
 824   def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
 829   def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
 834   def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
 839   def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
 1099 def : InstAlias<"vneg.v $vd, $vs$vm", (VRSUB_VX VR:$vd, VR:$vs, X0, VMaskOp:$vm)>;
 [all …]
 
 |