Home
last modified time | relevance | path

Searched refs:vi (Results 1 – 25 of 273) sorted by relevance

1234567891011

/freebsd/contrib/tcsh/nls/ja/
H A Dset311 9 行末までを変更(vi)
83 81 次のワードの先頭へ移動(vi)
88 86 行末までを変更(vi)
99 97 viの挿入モードに移行
100 98 行頭でviの挿入モードに移行
107 105 逆方向履歴検索(vi)
108 106 順方向履歴検索(vi)
110 108 1行全置換(vi)
111 109 前のワードへ移動(vi)
112 110 次のワードへ移行(vi)
[all …]
/freebsd/sys/dev/cxgbe/
H A Dt4_netmap.c151 nm_rxq->vi = vi; in alloc_nm_rxq()
162 ctx = &vi->ctx; in alloc_nm_rxq()
236 V_TXPKT_VF(vi->vin) | V_TXPKT_VF_VLD(vi->vfvld)); in alloc_nm_txq()
541 rss = vi->rss; in cxgbe_netmap_simple_rss()
645 for (j = (vi->nnmrxq + 1) / 2; j < vi->nnmrxq; j++) { in cxgbe_netmap_split_rss()
663 rc = -t4_config_rss_range(sc, sc->mbox, vi->viid, 0, vi->rss_size, in cxgbe_netmap_split_rss()
664 vi->nm_rss, vi->rss_size); in cxgbe_netmap_split_rss()
769 vi->nm_rss = malloc(vi->rss_size * sizeof(uint16_t), M_CXGBE, in cxgbe_netmap_on()
1266 pi = vi->pi; in cxgbe_nm_attach()
1271 na.ifp = vi->ifp; in cxgbe_nm_attach()
[all …]
H A Dt4_main.c2677 vi->nnmtxq, vi->nnmrxq); in cxgbe_vi_attach()
2716 device_set_softc(vi->dev, vi); in cxgbe_attach()
3511 vi - vi->pi->vi); in vcxgbe_probe()
3525 index = vi - pi->vi; in alloc_extra_vi()
3532 vi->hw_addr, &vi->rss_size, &vi->vfvld, &vi->vin, func, 0); in alloc_extra_vi()
6249 if (vi && IS_DETACHING(vi)) { in begin_synchronized_op()
6814 if (vi->nrxq > vi->rss_size) { in vi_full_init()
6830 vi->rss = malloc(vi->rss_size * sizeof (*vi->rss), M_CXGBE, in vi_full_init()
6848 vi->rss, vi->rss_size); in vi_full_init()
7210 t4_get_vi_stats(vi->adapter, vi->vin, &vi->stats); in vi_refresh_stats()
[all …]
H A Dadapter.h187 #define IS_DETACHING(vi) ((vi)->flags & VI_DETACHING) argument
188 #define SET_DETACHING(vi) do {(vi)->flags |= VI_DETACHING;} while (0) argument
189 #define CLR_DETACHING(vi) do {(vi)->flags &= ~VI_DETACHING;} while (0) argument
306 struct vi_info *vi; member
340 #define IS_MAIN_VI(vi) ((vi) == &((vi)->pi->vi[0])) argument
1079 for (q = &vi->adapter->sge.txq[vi->first_txq], iter = 0; \
1082 for (q = &vi->adapter->sge.rxq[vi->first_rxq], iter = 0; \
1085 for (q = &vi->adapter->sge.ofld_txq[vi->first_ofld_txq], iter = 0; \
1088 for (q = &vi->adapter->sge.ofld_rxq[vi->first_ofld_rxq], iter = 0; \
1091 for (q = &vi->adapter->sge.nm_txq[vi->first_nm_txq], iter = 0; \
[all …]
H A Dt4_vf.c644 free(pi->vi, M_CXGBE); in t4vf_attach()
677 pi->vi[0].dev = pi->dev; in t4vf_attach()
720 struct vi_info *vi; in t4vf_attach() local
726 vi->pi = pi; in t4vf_attach()
727 vi->adapter = sc; in t4vf_attach()
731 vi->first_rxq = rqidx; in t4vf_attach()
732 vi->first_txq = tqidx; in t4vf_attach()
738 rqidx += vi->nrxq; in t4vf_attach()
739 tqidx += vi->ntxq; in t4vf_attach()
741 vi->rsrv_noflowq = 0; in t4vf_attach()
[all …]
H A Dt4_sge.c1150 iqidx = vi->first_nm_rxq + (i % vi->nnmrxq); in t4_setup_vi_queues()
1175 intr_idx = saved_idx + max(vi->nrxq, vi->nnmrxq); in t4_setup_vi_queues()
1981 if (vi->pfil != NULL && PFIL_HOOKED_IN(vi->pfil) && in eth_rx()
3757 struct vi_info *vi = &sc->port[0]->vi[0]; in alloc_fwq() local
3961 init_iq(&rxq->iq, sc, vi->tmr_idx, vi->pktc_idx, vi->qsize_rxq, in alloc_rxq()
4595 iqidx = vi->first_rxq + (idx % vi->nrxq); in alloc_txq()
4626 add_txq_sysctls(vi, &vi->ctx, oid, txq); in alloc_txq()
4660 V_TXPKT_VF(vi->vin) | V_TXPKT_VF_VLD(vi->vfvld)); in alloc_txq()
4814 iqidx = vi->first_ofld_rxq + (idx % vi->nofldrxq); in alloc_ofld_txq()
4818 iqidx = vi->first_rxq + (idx % vi->nrxq); in alloc_ofld_txq()
[all …]
H A Dt4_sched.c406 struct vi_info *vi; in t4_set_sched_queue() local
418 vi = &pi->vi[0]; in t4_set_sched_queue()
421 if (!(vi->flags & VI_INIT_DONE)) in t4_set_sched_queue()
423 MPASS(vi->ntxq > 0); in t4_set_sched_queue()
434 for_each_txq(vi, i, txq) { in t4_set_sched_queue()
592 struct vi_info *vi = arg1; in sysctl_tc() local
593 struct adapter *sc = vi->adapter; in sysctl_tc()
597 MPASS(qidx >= vi->first_txq && qidx < vi->first_txq + vi->ntxq); in sysctl_tc()
804 struct port_info *pi = vi->pi; in cxgbe_rate_tag_alloc()
843 V_TXPKT_VF(vi->vin) | V_TXPKT_VF_VLD(vi->vfvld)); in cxgbe_rate_tag_alloc()
[all …]
/freebsd/contrib/nvi/
H A DCMakeLists.txt73 vi/getc.c vi/v_at.c vi/v_ch.c vi/v_cmd.c vi/v_delete.c vi/v_ex.c
74 vi/v_increment.c vi/v_init.c vi/v_itxt.c vi/v_left.c vi/v_mark.c
75 vi/v_match.c vi/v_paragraph.c vi/v_put.c vi/v_redraw.c vi/v_replace.c
76 vi/v_right.c vi/v_screen.c vi/v_scroll.c vi/v_search.c vi/v_section.c
77 vi/v_sentence.c vi/v_status.c vi/v_txt.c vi/v_ulcase.c vi/v_undo.c
78 vi/v_util.c vi/v_word.c vi/v_xchar.c vi/v_yank.c vi/v_z.c vi/v_zexit.c
79 vi/vi.c vi/vs_line.c vi/vs_msg.c vi/vs_refresh.c vi/vs_relative.c
80 vi/vs_smap.c vi/vs_split.c)
102 add_custom_command(OUTPUT vi/extern.h
238 set(vi_cv_path_preserve /var/tmp/vi.recover/)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/display/tegra/
H A Dnvidia,tegra20-vi.yaml15 pattern: "^vi@[0-9a-f]+$"
19 - const: nvidia,tegra20-vi
20 - const: nvidia,tegra30-vi
21 - const: nvidia,tegra114-vi
22 - const: nvidia,tegra124-vi
26 - const: nvidia,tegra210-vi
27 - const: nvidia,tegra186-vi
45 - const: vi
139 vi@54080000 {
145 reset-names = "vi";
[all …]
/freebsd/share/doc/usd/13.viref/
H A DMakefile3 EXTRA= ex.cmd.roff ref.so set.opt.roff vi.cmd.roff
5 CLEANFILES= vi.ref-patched index
10 vi.ref-patched: vi.ref
15 SRCS+= vi.ref-${_dev}
17 CLEANFILES+= index.so.${_dev} vi.ref-${_dev}
19 vi.ref-${_dev}: index.so.${_dev}
20 sed -e 's:^\.so index\.so\.\\\*\[\.T\]$$:${_dev}:' vi.ref-patched > ${.TARGET}
23 index.so.${_dev}: vi.ref-patched ${EXTRA:Nindex.so.${_dev}}
24 sed -e 's:^\.so index\.so\.\\\*\[\.T\]$$::' vi.ref-patched | \
/freebsd/libexec/rc/rc.d/
H A Dvirecover21 [ -d /var/tmp/vi.recover ] || return
22 find /var/tmp/vi.recover ! -type f -a ! -type d -delete
23 vibackup=`echo /var/tmp/vi.recover/vi.*`
26 for i in /var/tmp/vi.recover/vi.*; do
41 virecovery=`echo /var/tmp/vi.recover/recover.*`
43 for i in /var/tmp/vi.recover/recover.*; do
/freebsd/lib/libvmmapi/aarch64/
H A Dvmmapi_machdep.c82 struct vm_irq vi; in vm_assert_irq() local
84 bzero(&vi, sizeof(vi)); in vm_assert_irq()
85 vi.irq = irq; in vm_assert_irq()
87 return (ioctl(ctx->fd, VM_ASSERT_IRQ, &vi)); in vm_assert_irq()
93 struct vm_irq vi; in vm_deassert_irq() local
95 bzero(&vi, sizeof(vi)); in vm_deassert_irq()
96 vi.irq = irq; in vm_deassert_irq()
98 return (ioctl(ctx->fd, VM_DEASSERT_IRQ, &vi)); in vm_deassert_irq()
/freebsd/sys/netpfil/ipfw/
H A Dip_fw_table_value.c128 struct namedobj_instance *vi; in get_value_ptrs() local
132 vi = CHAIN_TO_VI(ch); in get_value_ptrs()
135 vi = NULL; in get_value_ptrs()
142 *pvi = vi; in get_value_ptrs()
178 struct namedobj_instance *vi; in resize_shared_value_storage() local
191 vi = CHAIN_TO_VI(ch); in resize_shared_value_storage()
336 struct namedobj_instance *vi; in rollback_table_values() local
415 struct namedobj_instance *vi; in ipfw_garbage_table_values() local
473 struct namedobj_instance *vi; in ipfw_link_table_values() local
727 struct namedobj_instance *vi; in list_table_values() local
[all …]
/freebsd/sys/dev/cxgbe/tom/
H A Dt4_connect.c239 struct vi_info *vi; in t4_connect() local
255 vi = if_getsoftc(rt_ifp); in t4_connect()
259 vi = if_getsoftc(ifp); in t4_connect()
276 toep = alloc_toepcb(vi, M_NOWAIT); in t4_connect()
284 toep->l2te = t4_l2t_get(vi->pi, rt_ifp, in t4_connect()
292 init_toepcb(vi, toep); in t4_connect()
317 cpl->params = select_ntuple(vi, toep->l2te); in t4_connect()
339 cpl->opt0 = calc_options0(vi, &toep->params); in t4_connect()
340 cpl->opt2 = calc_options2(vi, &toep->params); in t4_connect()
354 cpl->params = select_ntuple(vi, toep->l2te); in t4_connect()
[all …]
/freebsd/usr.bin/vi/
H A DMakefile6 PACKAGE= vi
21 LINKS+= ${BINDIR}/${VI} ${BINDIR}/vi ${BINDIR}/${EX} ${BINDIR}/ex
24 MAN= ${SRCDIR}/man/vi.1
25 MLINKS+=vi.1 ex.1 vi.1 view.1
26 MLINKS+=vi.1 nex.1 vi.1 nview.1 vi.1 nvi.1
31 .PATH: ${SRCDIR}/vi
68 v_util.c v_word.c v_xchar.c v_yank.c v_z.c v_zexit.c vi.c
/freebsd/sys/dev/syscons/
H A Dscterm-dumb.c115 vid_info_t *vi; in dumb_ioctl() local
122 vi = (vid_info_t *)data; in dumb_ioctl()
123 if (vi->size != sizeof(struct vid_info)) in dumb_ioctl()
125 vi->mv_norm.fore = SC_NORM_ATTR & 0x0f; in dumb_ioctl()
126 vi->mv_norm.back = (SC_NORM_ATTR >> 4) & 0x0f; in dumb_ioctl()
127 vi->mv_rev.fore = SC_NORM_ATTR & 0x0f; in dumb_ioctl()
128 vi->mv_rev.back = (SC_NORM_ATTR >> 4) & 0x0f; in dumb_ioctl()
/freebsd/sys/arm/ti/am335x/
H A Dam335x_lcd_syscons.c337 video_info_t *vi; in am335x_syscons_update_margins() local
340 vi = &adp->va_info; in am335x_syscons_update_margins()
342 sc->xmargin = (sc->width - (vi->vi_width * vi->vi_cwidth)) / 2; in am335x_syscons_update_margins()
343 sc->ymargin = (sc->height - (vi->vi_height * vi->vi_cheight))/2; in am335x_syscons_update_margins()
417 video_info_t *vi; in am335x_syscons_init() local
420 vi = &adp->va_info; in am335x_syscons_init()
426 vi->vi_cwidth = 8; in am335x_syscons_init()
429 vi->vi_height = sc->height/vi->vi_cheight; in am335x_syscons_init()
435 vi->vi_width = COL; in am335x_syscons_init()
439 sc->xmargin = (sc->width - (vi->vi_width * vi->vi_cwidth)) / 2; in am335x_syscons_init()
[all …]
/freebsd/sys/arm/broadcom/bcm2835/
H A Dbcm2835_fb.c419 video_info_t *vi; in bcmfb_update_margins() local
422 vi = &adp->va_info; in bcmfb_update_margins()
424 sc->xmargin = (sc->width - (vi->vi_width * vi->vi_cwidth)) / 2; in bcmfb_update_margins()
425 sc->ymargin = (sc->height - (vi->vi_height * vi->vi_cheight)) / 2; in bcmfb_update_margins()
507 video_info_t *vi; in bcmfb_init() local
510 vi = &adp->va_info; in bcmfb_init()
517 vi->vi_width = sc->width / vi->vi_cwidth; in bcmfb_init()
518 vi->vi_height = sc->height / vi->vi_cheight; in bcmfb_init()
524 vi->vi_width = COL; in bcmfb_init()
528 sc->xmargin = (sc->width - (vi->vi_width * vi->vi_cwidth)) / 2; in bcmfb_init()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsNVPTX.def594 BUILTIN(__nvvm_bar_sync, "vi", "n")
925 TARGET_BUILTIN(__hmma_m16n16k16_ld_a, "vi*iC*UiIi", "", AND(SM_70,PTX60))
926 TARGET_BUILTIN(__hmma_m16n16k16_ld_b, "vi*iC*UiIi", "", AND(SM_70,PTX60))
932 TARGET_BUILTIN(__hmma_m32n8k16_ld_a, "vi*iC*UiIi", "", AND(SM_70,PTX61))
933 TARGET_BUILTIN(__hmma_m32n8k16_ld_b, "vi*iC*UiIi", "", AND(SM_70,PTX61))
939 TARGET_BUILTIN(__hmma_m8n32k16_ld_a, "vi*iC*UiIi", "", AND(SM_70,PTX61))
940 TARGET_BUILTIN(__hmma_m8n32k16_ld_b, "vi*iC*UiIi", "", AND(SM_70,PTX61))
964 TARGET_BUILTIN(__bmma_m8n8k128_ld_c, "vi*iC*UiIi", "", AND(SM_75,PTX63))
980 TARGET_BUILTIN(__imma_m32n8k16_ld_c, "vi*iC*UiIi", "", AND(SM_72,PTX63))
988 TARGET_BUILTIN(__imma_m8n32k16_ld_c, "vi*iC*UiIi", "", AND(SM_72,PTX63))
[all …]
/freebsd/lib/libifconfig/
H A Dlibifconfig_sfp.c274 get_sff_string(ii, SFF_8472_BASE, SFF_8472_VENDOR_START, vi->name); in get_sfp_vendor_info()
275 get_sff_string(ii, SFF_8472_BASE, SFF_8472_PN_START, vi->pn); in get_sfp_vendor_info()
276 get_sff_string(ii, SFF_8472_BASE, SFF_8472_SN_START, vi->sn); in get_sfp_vendor_info()
277 get_sff_date(ii, SFF_8472_BASE, SFF_8472_DATE_START, vi->date); in get_sfp_vendor_info()
285 get_sff_string(ii, SFF_8436_BASE, SFF_8436_PN_START, vi->pn); in get_qsfp_vendor_info()
286 get_sff_string(ii, SFF_8436_BASE, SFF_8436_SN_START, vi->sn); in get_qsfp_vendor_info()
287 get_sff_date(ii, SFF_8436_BASE, SFF_8436_DATE_START, vi->date); in get_qsfp_vendor_info()
293 const char *name, struct ifconfig_sfp_vendor_info *vi) in ifconfig_sfp_get_sfp_vendor_info() argument
297 memset(vi, 0, sizeof(*vi)); in ifconfig_sfp_get_sfp_vendor_info()
303 return (get_qsfp_vendor_info(&ii, vi)); in ifconfig_sfp_get_sfp_vendor_info()
[all …]
/freebsd/sys/dev/vmd/
H A Dvmd.c138 struct vmd_irq *vi; in vmd_free() local
152 vi = &sc->vmd_irq[i]; in vmd_free()
156 vi->vi_handle); in vmd_free()
158 vi->vi_rid, vi->vi_res); in vmd_free()
253 struct vmd_irq *vi; in vmd_attach() local
364 vi = &sc->vmd_irq[i]; in vmd_attach()
365 vi->vi_rid = i + 1; in vmd_attach()
372 vi->vi_irq = rman_get_start(vi->vi_res); in vmd_attach()
374 INTR_MPSAFE, vmd_intr, NULL, vi, &vi->vi_handle)) { in vmd_attach()
377 vi->vi_rid, vi->vi_res); in vmd_attach()
[all …]
/freebsd/usr.sbin/bhyve/
H A Dbhyverun.c371 struct vcpu_info *vi = param; in fbsdrun_start_thread() local
374 snprintf(tname, sizeof(tname), "vcpu %d", vi->vcpuid); in fbsdrun_start_thread()
377 if (vcpumap[vi->vcpuid] != NULL) { in fbsdrun_start_thread()
379 sizeof(cpuset_t), vcpumap[vi->vcpuid]); in fbsdrun_start_thread()
384 checkpoint_cpu_add(vi->vcpuid); in fbsdrun_start_thread()
387 gdb_cpu_add(vi->vcpu); in fbsdrun_start_thread()
390 vm_loop(vi->ctx, vi->vcpu); in fbsdrun_start_thread()
400 struct vcpu_info *vi; in fbsdrun_addcpu() local
404 vi = &vcpu_info[vcpuid]; in fbsdrun_addcpu()
406 error = vm_activate_cpu(vi->vcpu); in fbsdrun_addcpu()
[all …]
/freebsd/lib/libedit/
H A DMakefile19 terminal.c tokenizer.c tokenizern.c tty.c vi.c
68 SRCS+= common.h emacs.h fcns.h func.h help.h vi.h
69 CLEANFILES+= common.h emacs.h fcns.h func.h help.h vi.h
73 AHDR= vi.h emacs.h common.h
74 ASRC= ${EDITDIR}/vi.c ${EDITDIR}/emacs.c ${EDITDIR}/common.c
78 .for hdr in vi emacs common
/freebsd/sys/dev/bnxt/
H A Dbnxt_sysctl.c1042 struct bnxt_ver_info *vi = softc->ver_info; in bnxt_create_ver_sysctls() local
1043 struct sysctl_oid *oid = vi->ver_oid; in bnxt_create_ver_sysctls()
1049 "hwrm_if", CTLFLAG_RD, vi->hwrm_if_ver, 0, in bnxt_create_ver_sysctls()
1055 "hwrm_fw", CTLFLAG_RD, vi->hwrm_fw_ver, 0, in bnxt_create_ver_sysctls()
1058 "mgmt_fw", CTLFLAG_RD, vi->mgmt_fw_ver, 0, in bnxt_create_ver_sysctls()
1061 "netctrl_fw", CTLFLAG_RD, vi->netctrl_fw_ver, 0, in bnxt_create_ver_sysctls()
1064 "roce_fw", CTLFLAG_RD, vi->roce_fw_ver, 0, in bnxt_create_ver_sysctls()
1067 "fw_ver", CTLFLAG_RD, vi->fw_ver_str, 0, in bnxt_create_ver_sysctls()
1070 "phy", CTLFLAG_RD, vi->phy_ver, 0, in bnxt_create_ver_sysctls()
1073 "hwrm_fw_name", CTLFLAG_RD, vi->hwrm_fw_name, 0, in bnxt_create_ver_sysctls()
[all …]
/freebsd/contrib/nvi/cl/
H A DREADME.signal1 There are six (normally) asynchronous actions about which vi cares:
16 can they handle interrupted system calls, so the vi routines that
22 switched vi into ex mode, and we continue that practice.
27 that the screen will not resize until vi runs out of keys, but
34 worse as more complex semantics are added to vi, especially things like
45 historic implementations of vi). Periodically reading the terminal
51 the historic version of vi didn't permit you to suspend the screen if
52 you were on the colon command line. This isn't right. ^Z isn't a vi
70 The second problem is that vi permits you to enter literal signal
95 requires interaction or state between the vi parser and the key
[all …]

1234567891011