/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)) argument 68 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 | 100 vdev_missing(vdev_stat_t *vs, uint_t vsc) in vdev_missing() argument 103 return (vs->vs_state == VDEV_STATE_CANT_OPEN && in vdev_missing() 104 vs->vs_aux == VDEV_AUX_OPEN_FAILED); in vdev_missing() 108 vdev_faulted(vdev_stat_t *vs, uint_t vsc) in vdev_faulted() argument 111 return (vs->vs_state == VDEV_STATE_FAULTED); in vdev_faulted() 115 vdev_errors(vdev_stat_t *vs, uint_t vsc) in vdev_errors() argument 118 return (vs->vs_state == VDEV_STATE_DEGRADED || in vdev_errors() 119 vs->vs_read_errors != 0 || vs->vs_write_errors != 0 || in vdev_errors() 120 vs->vs_checksum_errors != 0); in vdev_errors() 124 vdev_broken(vdev_stat_t *vs, uint_t vsc) in vdev_broken() argument [all …]
|
/freebsd/sys/net/ |
H A D | vnet.c | 116 * vs. modules in similar but different ways. In both cases, virtualized 516 struct vnet_sysinit *vs, *vs2; in vnet_register_sysinit() local 519 vs = arg; in vnet_register_sysinit() 520 KASSERT(vs->subsystem > SI_SUB_VNET, ("vnet sysinit too early")); in vnet_register_sysinit() 525 if (vs2->subsystem > vs->subsystem) in vnet_register_sysinit() 527 if (vs2->subsystem == vs->subsystem && vs2->order > vs->order) in vnet_register_sysinit() 531 TAILQ_INSERT_BEFORE(vs2, vs, link); in vnet_register_sysinit() 533 TAILQ_INSERT_TAIL(&vnet_constructors, vs, link); in vnet_register_sysinit() 542 vs->func(vs->arg); in vnet_register_sysinit() 552 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() argument 329 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/sys/contrib/openzfs/lib/libzpool/ |
H A D | util.c | 48 vdev_stat_t *vs; in show_vdev_stats() local 75 (uint64_t **)&vs, &c) != 0) in show_vdev_stats() 76 vs = v0; in show_vdev_stats() 86 sec = MAX(1, vs->vs_timestamp / NANOSEC); in show_vdev_stats() 88 nicenum(vs->vs_alloc, used, sizeof (used)); in show_vdev_stats() 89 nicenum(vs->vs_space - vs->vs_alloc, avail, sizeof (avail)); in show_vdev_stats() 90 nicenum(vs->vs_ops[ZIO_TYPE_READ] / sec, rops, sizeof (rops)); in show_vdev_stats() 91 nicenum(vs->vs_ops[ZIO_TYPE_WRITE] / sec, wops, sizeof (wops)); in show_vdev_stats() 92 nicenum(vs->vs_bytes[ZIO_TYPE_READ] / sec, rbytes, in show_vdev_stats() 94 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 { \ argument 79 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 …]
|
H A D | vfs_hash.c | 76 enum vgetstate vs; in vfs_hash_get() local 88 vs = vget_prep(vp); in vfs_hash_get() 90 error = vget_finish(vp, flags, vs); in vfs_hash_get() 156 enum vgetstate vs; in vfs_hash_insert() local 170 vs = vget_prep(vp2); in vfs_hash_insert() 172 error = vget_finish(vp2, flags, vs); in vfs_hash_insert()
|
/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 | 122 views_enter_view_name(struct views* vs, char* name) in views_enter_view_name() argument 131 lock_rw_wrlock(&vs->lock); in views_enter_view_name() 133 if(!rbtree_insert(&vs->vtree, &v->node)) { in views_enter_view_name() 137 lock_rw_unlock(&vs->lock); in views_enter_view_name() 140 lock_rw_unlock(&vs->lock); in views_enter_view_name() 145 views_apply_cfg(struct views* vs, struct config_file* cfg) in views_apply_cfg() argument 158 if(!(v = views_enter_view_name(vs, cv->name))) in views_apply_cfg() 225 views_find_view(struct views* vs, const char* name, int write) in views_find_view() argument 231 lock_rw_rdlock(&vs->lock); in views_find_view() 232 if(!(v = (struct view*)rbtree_search(&vs->vtree, &key.node))) { in views_find_view() [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() 1763 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 in nlm_get_vfs_state() 1752 nlm_get_vfs_state(struct nlm_host * host,struct svc_req * rqstp,fhandle_t * fhp,struct vfs_state * vs,accmode_t accmode) nlm_get_vfs_state() argument 1824 nlm_release_vfs_state(struct vfs_state * vs) nlm_release_vfs_state() argument 1854 struct vfs_state vs; nlm_do_test() local 1952 struct vfs_state vs; nlm_do_lock() local 2141 struct vfs_state vs; nlm_do_cancel() local 2231 struct vfs_state vs; nlm_do_unlock() local [all...] |
/freebsd/lib/libc/xdr/ |
H A D | xdr_float.c | 97 struct vax_single vs, *vsp; in xdr_float() local 107 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 | 164 …ok($macdata[0] =~ $expected, "SHA1: Check HASH value is as expected ($macdata[0]) vs ($expected)"); 177 …ok($hmacdata[0] =~ $expected, "HMAC: Check HMAC value is as expected ($hmacdata[0]) vs ($expected)… 179 "HMAC: Check second HMAC value is consistent with the first ($hmacdata[1]) vs ($expected)"); 191 …ok($hmacdata[0] =~ $expected, "HMAC: Check HMAC value is as expected ($hmacdata[0]) vs ($expected)… 193 "HMAC: Check second HMAC value is consistent with the first ($hmacdata[1]) vs ($expected)"); 206 …ok($hmacdata[0] =~ $expected, "HMAC: Check HMAC value is as expected ($hmacdata[0]) vs ($expected)… 208 "HMAC: Check second HMAC value is consistent with the first ($hmacdata[1]) vs ($expected)"); 220 …ok($xofdata[0] =~ $expected, "XOF: Check digest value is as expected ($xofdata[0]) vs ($expected)"… 222 "XOF: Check second digest value is consistent with the first ($xofdata[1]) vs ($expected)");
|
/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/share/doc/papers/timecounter/ |
H A D | tmac.usenix | 4 .nr VS 11 22 .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() local 211 TAILQ_FOREACH(vs, &vp->val, tq) in load_config() 212 if (!STAILQ_EMPTY(&vs->vars)) { in load_config() 220 vs = TAILQ_FIRST(&vp->val); in load_config() 221 if (TAILQ_NEXT(vs, tq) != NULL && in load_config() 229 s->s = erealloc(s->s, s->len + vs->len + 1); in load_config() 230 memmove(s->s + v->pos + vs->len, in load_config() 233 memcpy(s->s + v->pos, vs->s, vs->len); in load_config() 236 vv->pos += vs->len; in load_config() 237 s->len += vs->len; in load_config() [all …]
|
/freebsd/sys/contrib/openzfs/cmd/zpool_influxdb/ |
H A D | zpool_influxdb.c | 342 vdev_stat_t *vs; in print_summary_stats() local 346 (uint64_t **)&vs, &c) != 0) { in print_summary_stats() 350 pool_name, zpool_state_to_name((vdev_state_t)vs->vs_state, in print_summary_stats() 351 (vdev_aux_t)vs->vs_aux), vdev_desc); in print_summary_stats() 352 print_kv("alloc", vs->vs_alloc); in print_summary_stats() 353 print_kv(",free", vs->vs_space - vs->vs_alloc); in print_summary_stats() 354 print_kv(",size", vs->vs_space); in print_summary_stats() 355 print_kv(",read_bytes", vs->vs_bytes[ZIO_TYPE_READ]); in print_summary_stats() 356 print_kv(",read_errors", vs->vs_read_errors); in print_summary_stats() 357 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 vs 26 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 …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ |
H A D | ARMBaseInfo.h | 37 VS, // Overflow Unordered enumerator 57 case VS: return VC; in getOppositeCondition() 58 case VC: return VS; in getOppositeCondition() 154 case ARMCC::VS: return "vs"; in ARMCondCodeToString() 177 .Case("vs", ARMCC::VS) in ARMCondCodeFromString()
|