Home
last modified time | relevance | path

Searched +full:5 +full:vs (Results 1 – 25 of 656) sorted by relevance

12345678910>>...27

/freebsd/sys/contrib/openzfs/lib/libzpool/
H A Dutil.c49 vdev_stat_t *vs; in show_vdev_stats() local
76 (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/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticASTKinds.td118 "specifiers (%1 vs %3) has unspecified value">;
316 "size to copy (%4) is not a multiple of size of element type %3 (%5)|"
455 "translation units (%1 vs. %2)">;
458 "translation units (%1 vs. %2)">,
468 "translation units (%1 vs. %2)">;
471 "translation units (%1 vs. %2)">,
495 "translation units (%1 vs. %2)">;
498 "translation units (%1 vs. %2)">,
504 "translation units (%1 vs. %2)">;
507 "translation units (%1 vs. %2)">,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoV.td60 def simm5 : RISCVSImmLeafOp<5> {
64 return isInt<5>(Imm);
76 [{return (isInt<5>(Imm) && Imm != -16) || Imm == 16;}]> {
82 return (isInt<5>(Imm) && Imm != -16) || Imm == 16;
88 [{return Imm != 0 && ((isInt<5>(Imm) && Imm != -16) || Imm == 16);}]>;
379 // vs<nf>r.v vd, (rs1)
530 class VALUVs2<bits<6> funct6, bits<5> vs1, RISCVVFormat opv, string opcodestr>
618 multiclass VALU_MV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
723 multiclass VSQR_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
728 multiclass VRCP_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
[all …]
/freebsd/share/doc/usd/22.trofftut/
H A Dttindex54 #f (font change) 5
71 ^ft (change font) 5
74 ^lg (set ligatures 5
92 backslash 1,3,5,14,16
95 bold font (.ft B) 5
101 changing fonts (^ft, #f) 5
103 character set 4,5,19
119 Greek (#(*-) 5,19
131 ligatures (ff,fi,fl; ^lg) 5
133 line spacing (^vs) 3
[all …]
/freebsd/tests/sys/compat32/aarch64/
H A Dswp_cond_test_impl.S121 /* vs */
135 /* !vs */
145 movw r0, :lower16:.L.vs
146 movt r0, :upper16:.L.vs
147 ldr r1, =(.L.vsEnd - .L.vs - 1)
162 beq 5f
174 5:
394 .L.vs:
395 .asciz "vs"
397 .size .L.vs, .L.vsEnd - .L.vs
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_status.c65 "ZFS-8000-5E", /* ZPOOL_STATUS_CORRUPT_LABEL_NR */
101 vdev_missing(vdev_stat_t *vs, uint_t vsc, void *arg) in vdev_missing() argument
104 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()
[all …]
/freebsd/sys/contrib/dev/rtw89/
H A DKconfig125 tristate "Realtek 8922AE/8922AE-VS PCI wireless network (Wi-Fi 7) adapter"
131 Select this option will enable support for 8922AE/8922AE-VS chipset
134 supporting 2x2 2GHz/5GHz/6GHz 4096-QAM 160MHz channels.
136 The variant 8922AE-VS has the same features except 1024-QAM.
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h117 /// {7, 5, "!!" }
127 /// { 7, 5, "!!"}
509 /// \version 5
755 /// switch (a) { vs. switch (a) {
768 /// switch (a) { vs. switch (a) {
1099 /// aaaa = vs. aaaa = "bbbb"
1317 /// switch (foo) { vs. switch (foo) {
1506 /// int f() vs. int f()
1518 /// class Foo vs. class Foo
1530 /// namespace Foo vs. namespace Foo
[all …]
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_upgrade/
H A Dzfs_upgrade.kshlib33 set -A zpl_create_versions 3 4 5
39 set -A zpl_upgrade_versions 3 4 5
45 typeset vs=$(get_pool_prop version $pool)
46 if [ "$vs" = "-" ]; then
49 echo "$vs"
/freebsd/contrib/bc/
H A DREADME.md65 manual][5].
82 To build `bc`, you can open the `vs/bc.sln` file in Visual Studio, select the
88 msbuild -property:Configuration=<config> vs/bc.sln
93 On Windows, the calculators are built as `vs/bin/<platform>/<config>/bc.exe` and
94 `vs/bin/<Platform>/<Config>/dc.exe`, where `<platform>` can be either `Win32` or
102 To build the library, you can open the `vs/bcl.sln` file in Visual Studio,
108 msbuild -property:Configuration=<config> vs/bcl.sln
113 On Windows, the library is built as `vs/lib/<platform>/<config>/bcl.lib`, where
168 [build manual][5], or run `./configure.sh --help`, for more details.
180 see the [build manual][5].
[all …]
/freebsd/crypto/openssl/test/recipes/
H A D20-test_dgst.t63 plan tests => 5;
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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_fua.ksh36 # 1. dd write 5MB of data with "oflag=dsync,direct" to a zvol. Those flags
68 awk '/[0-9]+$/{s+=$4+$5} END{print s}'
79 log_must fio --name=write_iops --size=5M \
88 # the log vs the first vdev. Experiments show anywhere from a 160-320x
89 # ratio of writes to the log vs the first vdev (due to some straggler
101 log_must dd if=/dev/urandom of="$datafile1" bs=1M count=5
104 log_must dd if=$datafile1 of=$zvolpath oflag=dsync,direct bs=1M count=5
107 log_must dd if=$zvolpath of="$datafile2" bs=1M count=5
/freebsd/sys/dev/ath/ath_hal/ar9002/
H A Dar9280_olc.c153 delta = (currPDADC - AH5416(ah)->initPDADC + 5) / 10; in ar9280olcTemperatureCompensation()
179 /* Prior to writing the boundaries or the pdadc vs. power table in ar9280ChangeGainBoundarySettings()
181 * vs. power table needs to be checked and the curve boundaries in ar9280ChangeGainBoundarySettings()
219 * pdadc vs pwr table needs to be adjusted prior to writing to the in ar9280AdjustPDADCValues()
323 * XXX ath9k doesn't clear this for 5ghz mode if in ar9280SetPowerCalTable()
369 * Prior to writing the boundaries or the pdadc vs. power table in ar9280SetPowerCalTable()
371 * vs. power table needs to be checked and the curve boundaries in ar9280SetPowerCalTable()
394 * pdadc vs pwr table needs to be adjusted prior to writing to the in ar9280SetPowerCalTable()
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiCondCode.h19 ICC_CS = 5, // carry set
20 ICC_UGE = 5, // unsigned greater than or equal
47 return "vs"; // oVerflow set in lanaiCondCodeToString()
87 .EndsWith("vs", LPCC::ICC_VS) in suffixToLanaiCondCode()
/freebsd/tests/sys/net/routing/
H A Drtsock_common.h417 snprintf(msg, sz, "family: %d vs %d", a->sa_family, b->sa_family); in sa_equal_msg_flags()
421 snprintf(msg, sz, "len: %d vs %d", a->sa_len, b->sa_len); in sa_equal_msg_flags()
432 snprintf(msg, sz, "addr diff: %s vs %s", a_s, b_s); in sa_equal_msg_flags()
436 snprintf(msg, sz, "port diff: %d vs %d", in sa_equal_msg_flags()
444 snprintf(msg, sz, "zero diff: 0x%08X%08X vs 0x%08X%08X", in sa_equal_msg_flags()
456 snprintf(msg, sz, "addr diff: %s vs %s", a_s, b_s); in sa_equal_msg_flags()
460 snprintf(msg, sz, "scope diff: %u vs %u", a6->sin6_scope_id, b6->sin6_scope_id); in sa_equal_msg_flags()
469 snprintf(msg, sz, "sdl_index diff: %u vs %u", al->sdl_index, bl->sdl_index); in sa_equal_msg_flags()
477 snprintf(msg, sz, "sdl_alen diff: {%s} (%d) vs {%s} (%d)", in sa_equal_msg_flags()
483 snprintf(msg, sz, "sdl_type diff: %u vs %u", al->sdl_type, bl->sdl_type); in sa_equal_msg_flags()
[all …]
/freebsd/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_main.c1158 vdev_stat_t *vs; in fill_vdev_info() local
1243 (uint64_t **)&vs, &c) == 0) { in fill_vdev_info()
1245 vdev_state_str[vs->vs_state]); in fill_vdev_info()
2534 cb.tpool = tpool_create(1, 5 * sysconf(_SC_NPROCESSORS_ONLN), in zpool_do_export()
2720 print_status_initialize(vdev_stat_t *vs, boolean_t verbose) in print_status_initialize() argument
2723 if ((vs->vs_initialize_state == VDEV_INITIALIZE_ACTIVE || in print_status_initialize()
2724 vs->vs_initialize_state == VDEV_INITIALIZE_SUSPENDED || in print_status_initialize()
2725 vs->vs_initialize_state == VDEV_INITIALIZE_COMPLETE) && in print_status_initialize()
2726 !vs->vs_scan_removing) { in print_status_initialize()
2730 time_t t = vs->vs_initialize_action_time; in print_status_initialize()
[all …]
/freebsd/sys/kern/
H A Dsubr_stats.c78 #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 …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonDepIICHVX.td133 InstrStage<1, [CVI_XLSHF]>], [9, 5],
136 InstrItinData <tc_05ca8cfd, /*SLOT0123,VS*/
138 InstrStage<1, [CVI_SHIFT]>], [9, 5, 5],
143 InstrStage<1, [CVI_MPY01]>], [9, 7, 5, 5],
148 InstrStage<1, [CVI_MPY01]>], [9, 5],
153 InstrStage<1, [CVI_MPY01]>], [9, 5, 2],
165 InstrStage<1, [CVI_XLANE]>], [2, 1, 2, 5],
176 InstrStage<1, [CVI_SHIFT, CVI_XLANE]>], [9, 7, 5, 2],
179 InstrItinData <tc_16ff9ef8, /*SLOT0123,VS*/
181 InstrStage<1, [CVI_SHIFT]>], [9, 5, 5, 2],
[all …]
/freebsd/contrib/netbsd-tests/lib/libc/
H A Dt_convfp.c81 /* unsigned long vs. {long} double test */ in ATF_TC_BODY()
85 printf("testing double vs. long\n"); in ATF_TC_BODY()
89 printf("testing long double vs. long\n"); in ATF_TC_BODY()
118 ATF_CHECK_EQ_MSG(uv, 5, in ATF_TC_BODY()
/freebsd/sys/nlm/
H A Dnlm_prot_impl.c75 #define NLM_IDLE_PERIOD 5
1757 fhandle_t *fhp, struct vfs_state *vs, accmode_t accmode) in nlm_get_vfs_state() argument
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->vs_vnlocked = TRUE; in nlm_get_vfs_state()
1804 error = VOP_ACCESS(vs->vs_vp, accmode, cred, curthread); in nlm_get_vfs_state()
[all …]
/freebsd/share/man/man4/
H A Duvscom.435 .Nd USB support for SUNTAC Slipper U VS-10U serial adapters driver
48 .Xr loader.conf 5 :
70 driver provides support for the SUNTAC Slipper U VS-10U chip.
/freebsd/sys/dev/ipmi/
H A Dipmi_bt.c71 #define BT_C_OEM0 (1L << 5)
103 int count = 20000; /* about 5 seconds */ in bt_wait()
157 * Byte 1 | Byte 2 | Byte 3 | Byte 4 | Byte 5:N in bt_polled_request()
185 * Byte 1 | Byte 2 | Byte 3 | Byte 4 | Byte 5 | Byte 6:N in bt_polled_request()
207 DMSGV(sc, "address doesn't match: addr=0x%02x vs. 0x%02x", in bt_polled_request()
213 DMSGV(sc, "seq number doesn't match: seq=0x%02x vs. 0x%02x", in bt_polled_request()
219 DMSGV(sc, "command doesn't match: cmd=0x%02x vs. 0x%02x", in bt_polled_request()
/freebsd/sys/contrib/device-tree/src/arm/qcom/
H A Dqcom-pm8941.dtsi84 <0x0 0x10 5 IRQ_TYPE_EDGE_BOTH>,
224 interrupt-names = "ocp-5vs1", "ocp-5vs2";
233 pm8941_5vs1: 5vs1 {
239 qcom,vs-soft-start-strength = <0>;
243 pm8941_5vs2: 5vs2 {
249 qcom,vs-soft-start-strength = <0>;
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Dqcom,spmi-regulator.yaml39 "^(5vs[1-2]|(l|s)[1-9][0-9]?|lvs[1-4])$":
87 qcom,vs-soft-start-strength:
161 "^vdd_s[1-5]-supply$": true
220 "^vdd_s[1-5]-supply$": true
276 - description: Over-current protection interrupt for 5V S1
277 - description: Over-current protection interrupt for 5V S2
280 - const: ocp-5vs1
281 - const: ocp-5vs2
409 "^vdd_s[1-5]
[all...]
/freebsd/sys/contrib/device-tree/include/dt-bindings/reset/
H A Dti-syscon.h19 /* When set this function is activated by setting(vs clearing) this bit */
22 #define STATUS_SET (1 << 5)
27 #define STATUS_CLEAR (0 << 5)

12345678910>>...27