/freebsd/contrib/tcsh/nls/ja/ |
H A D | set3 | 10 8 カーソル位置の大文字小文字を変換し、1文字移動(vi) 11 9 行末までを変更(vi) 83 81 次のワードの先頭へ移動(vi) 84 82 カーソルの後ろへ挿入モードへ移行(vi) 85 83 カーソル位置に挿入モードへ移行(vi) 86 84 カーソル位置の大文字小文字を変換し、1文字進む(vi) 88 86 行末までを変更(vi) 89 87 コマンドモードへ移行 (キー割り当て変更)(vi) 90 88 コマンドモードでの現在のワードの補完(vi) 91 89 前の文字に移動(バックスペイス)(vi) [all …]
|
/freebsd/sys/dev/cxgbe/ |
H A D | t4_netmap.c | 125 alloc_nm_rxq(struct vi_info *vi, struct sge_nm_rxq *nm_rxq, int intr_idx, in alloc_nm_rxq() argument 134 struct adapter *sc = vi->adapter; in alloc_nm_rxq() 135 struct netmap_adapter *na = NA(vi->ifp); in alloc_nm_rxq() 139 len = vi->qsize_rxq * IQ_ESIZE; in alloc_nm_rxq() 151 nm_rxq->vi = vi; in alloc_nm_rxq() 154 nm_rxq->iq_sidx = vi->qsize_rxq - sc->params.sge.spg_len / IQ_ESIZE; in alloc_nm_rxq() 162 ctx = &vi->ctx; in alloc_nm_rxq() 163 children = SYSCTL_CHILDREN(vi->nm_rxq_oid); in alloc_nm_rxq() 193 free_nm_rxq(struct vi_info *vi, struct sge_nm_rxq *nm_rxq) in free_nm_rxq() argument 195 struct adapter *sc = vi->adapter; in free_nm_rxq() [all …]
|
H A D | t4_main.c | 1392 pi->vi = malloc(sizeof(struct vi_info) * t4_num_vis, M_CXGBE, in t4_attach() 1403 free(pi->vi, M_CXGBE); in t4_attach() 1453 pi->vi[0].dev = pi->dev; in t4_attach() 1568 struct vi_info *vi; in t4_attach() local 1574 for_each_vi(pi, j, vi) { in t4_attach() 1575 vi->pi = pi; in t4_attach() 1576 vi->adapter = sc; in t4_attach() 1577 vi->first_intr = -1; in t4_attach() 1578 vi->qsize_rxq = t4_qsize_rxq; in t4_attach() 1579 vi->qsize_txq = t4_qsize_txq; in t4_attach() [all …]
|
H A D | adapter.h | 187 #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 773 struct vi_info *vi; member 1080 #define for_each_txq(vi, iter, q) \ argument 1081 for (q = &vi->adapter->sge.txq[vi->first_txq], iter = 0; \ 1082 iter < vi->ntxq; ++iter, ++q) 1083 #define for_each_rxq(vi, iter, q) \ argument [all …]
|
H A D | t4_vf.c | 637 pi->vi = malloc(sizeof(struct vi_info) * pi->nvi, M_CXGBE, in t4vf_attach() 648 free(pi->vi, M_CXGBE); in t4vf_attach() 683 pi->vi[0].dev = pi->dev; in t4vf_attach() 726 struct vi_info *vi; in t4vf_attach() local 731 for_each_vi(pi, j, vi) { in t4vf_attach() 732 vi->pi = pi; in t4vf_attach() 733 vi->adapter = sc; in t4vf_attach() 734 vi->qsize_rxq = t4_qsize_rxq; in t4vf_attach() 735 vi->qsize_txq = t4_qsize_txq; in t4vf_attach() 737 vi->first_rxq = rqidx; in t4vf_attach() [all …]
|
H A D | t4_sge.c | 1106 t4_setup_vi_queues(struct vi_info *vi) in t4_setup_vi_queues() argument 1122 struct adapter *sc = vi->adapter; in t4_setup_vi_queues() 1123 if_t ifp = vi->ifp; in t4_setup_vi_queues() 1127 intr_idx = vi->first_intr; in t4_setup_vi_queues() 1135 MPASS(vi->first_intr >= 0); in t4_setup_vi_queues() 1142 for_each_nm_rxq(vi, i, nm_rxq) { in t4_setup_vi_queues() 1143 rc = alloc_nm_rxq(vi, nm_rxq, intr_idx, i); in t4_setup_vi_queues() 1149 for_each_nm_txq(vi, i, nm_txq) { in t4_setup_vi_queues() 1150 iqidx = vi->first_nm_rxq + (i % vi->nnmrxq); in t4_setup_vi_queues() 1151 rc = alloc_nm_txq(vi, nm_txq, iqidx, i); in t4_setup_vi_queues() [all …]
|
H A D | t4_sched.c | 178 if (!in_range(p->pktsize, 64, if_getmtu(pi->vi[0].ifp))) in set_sched_class_params() 406 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() 425 if (!in_range(p->queue, 0, vi->ntxq - 1) || in t4_set_sched_queue() 434 for_each_txq(vi, i, txq) { in t4_set_sched_queue() 444 txq = &sc->sge.txq[vi->first_txq + p->queue]; in t4_set_sched_queue() 509 pktsize = if_getmtu(pi->vi[ in t4_reserve_cl_rl_kbps() 592 struct vi_info *vi = arg1; sysctl_tc() local 803 struct vi_info *vi = if_getsoftc(ifp); cxgbe_rate_tag_alloc() local 950 struct vi_info *vi = if_getsoftc(ifp); cxgbe_ratelimit_query() local [all...] |
/freebsd/contrib/nvi/ |
H A D | CMakeLists.txt | 46 cl/extern.h common/extern.h ex/extern.h vi/extern.h 72 vi/getc.c vi/v_at.c vi/v_ch.c vi/v_cmd.c vi/v_delete.c vi/v_ex.c 73 vi/v_increment.c vi/v_init.c vi/v_itxt.c vi/v_left.c vi/v_mark.c 74 vi/v_match.c vi/v_paragraph.c vi/v_put.c vi/v_redraw.c vi/v_replace.c 75 vi/v_right.c vi/v_screen.c vi/v_scroll.c vi/v_search.c vi/v_section.c 76 vi/v_sentence.c vi/v_status.c vi/v_txt.c vi/v_ulcase.c vi/v_undo.c 77 vi/v_util.c vi/v_word.c vi/v_xchar.c vi/v_yank.c vi/v_z.c vi/v_zexit.c 78 vi/vi.c vi/vs_line.c vi/vs_msg.c vi/vs_refresh.c vi/vs_relative.c 79 vi/vs_smap.c vi/vs_split.c) 101 add_custom_command(OUTPUT vi/extern.h [all …]
|
/freebsd/share/doc/usd/13.viref/ |
H A D | Makefile | 2 EXTRA= ex.cmd.roff ref.so set.opt.roff vi.cmd.roff 4 CLEANFILES= vi.ref-patched index 9 vi.ref-patched: vi.ref 14 SRCS+= vi.ref-${_dev} 16 CLEANFILES+= index.so.${_dev} vi.ref-${_dev} 18 vi.ref-${_dev}: index.so.${_dev} 19 sed -e 's:^\.so index\.so\.\\\*\[\.T\]$$:${_dev}:' vi.ref-patched > ${.TARGET} 22 index.so.${_dev}: vi.ref-patched ${EXTRA:Nindex.so.${_dev}} 23 sed -e 's:^\.so index\.so\.\\\*\[\.T\]$$::' vi.ref-patched | \
|
/freebsd/lib/libvmmapi/riscv/ |
H A D | vmmapi_machdep.c | 74 struct vm_irq vi; in vm_assert_irq() local 76 bzero(&vi, sizeof(vi)); in vm_assert_irq() 77 vi.irq = irq; in vm_assert_irq() 79 return (ioctl(ctx->fd, VM_ASSERT_IRQ, &vi)); in vm_assert_irq() 85 struct vm_irq vi; in vm_deassert_irq() local 87 bzero(&vi, sizeof(vi)); in vm_deassert_irq() 88 vi.irq = irq; in vm_deassert_irq() 90 return (ioctl(ctx->fd, VM_DEASSERT_IRQ, &vi)); in vm_deassert_irq()
|
/freebsd/libexec/rc/rc.d/ |
H A D | virecover | 21 [ -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/sys/netpfil/ipfw/ |
H A D | ip_fw_table_value.c | 132 struct namedobj_instance *vi; in get_value_ptrs() local 136 vi = CHAIN_TO_VI(ch); in get_value_ptrs() 139 vi = NULL; in get_value_ptrs() 146 *pvi = vi; in get_value_ptrs() 182 struct namedobj_instance *vi; in resize_shared_value_storage() local 195 vi = CHAIN_TO_VI(ch); in resize_shared_value_storage() 240 ipfw_objhash_foreach(vi, update_tvalue, &da); in resize_shared_value_storage() 254 unref_table_value(struct namedobj_instance *vi, struct table_value *pval, in unref_table_value() argument 264 ptvl = (struct table_val_link *)ipfw_objhash_lookup_kidx(vi, kidx); in unref_table_value() 266 ipfw_objhash_del(vi, &ptvl->no); in unref_table_value() [all …]
|
/freebsd/usr.bin/vi/ |
H A D | Makefile | 6 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/cxgbe/tom/ |
H A D | t4_connect.c | 248 struct vi_info *vi; in t4_connect() local 264 vi = if_getsoftc(rt_ifp); in t4_connect() 268 vi = if_getsoftc(ifp); in t4_connect() 285 toep = alloc_toepcb(vi, M_NOWAIT); in t4_connect() 293 toep->l2te = t4_l2t_get(vi->pi, rt_ifp, in t4_connect() 299 init_conn_params(vi, &settings, &inp->inp_inc, so, NULL, in t4_connect() 301 init_toepcb(vi, toep); in t4_connect() 326 cpl->params = select_ntuple(vi, toep->l2te); in t4_connect() 331 cpl5->params = select_ntuple(vi, toep->l2te); in t4_connect() 337 cpl6->params = select_ntuple(vi, toep->l2te); in t4_connect() [all …]
|
/freebsd/sys/arm/ti/am335x/ |
H A D | am335x_lcd_syscons.c | 337 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() 425 vi->vi_cheight = AM335X_FONT_HEIGHT; in am335x_syscons_init() 426 vi->vi_cwidth = 8; in am335x_syscons_init() 428 vi->vi_width = sc->width/8; in am335x_syscons_init() 429 vi->vi_height = sc->height/vi->vi_cheight; in am335x_syscons_init() [all …]
|
/freebsd/sys/dev/syscons/ |
H A D | scterm-dumb.c | 115 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/broadcom/bcm2835/ |
H A D | bcm2835_fb.c | 419 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() 515 vi->vi_cheight = BCMFB_FONT_HEIGHT; in bcmfb_init() 516 vi->vi_cwidth = BCMFB_FONT_WIDTH; 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() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | BuiltinsNVPTX.def | 604 BUILTIN(__nvvm_bar_sync, "vi", "n") 938 TARGET_BUILTIN(__hmma_m16n16k16_ld_a, "vi*iC*UiIi", "", AND(SM_70,PTX60)) 939 TARGET_BUILTIN(__hmma_m16n16k16_ld_b, "vi*iC*UiIi", "", AND(SM_70,PTX60)) 940 TARGET_BUILTIN(__hmma_m16n16k16_ld_c_f16, "vi*iC*UiIi", "", AND(SM_70,PTX60)) 942 TARGET_BUILTIN(__hmma_m16n16k16_st_c_f16, "vi*iC*UiIi", "", AND(SM_70,PTX60)) 945 TARGET_BUILTIN(__hmma_m32n8k16_ld_a, "vi*iC*UiIi", "", AND(SM_70,PTX61)) 946 TARGET_BUILTIN(__hmma_m32n8k16_ld_b, "vi*iC*UiIi", "", AND(SM_70,PTX61)) 947 TARGET_BUILTIN(__hmma_m32n8k16_ld_c_f16, "vi*iC*UiIi", "", AND(SM_70,PTX61)) 949 TARGET_BUILTIN(__hmma_m32n8k16_st_c_f16, "vi*iC*UiIi", "", AND(SM_70,PTX61)) 952 TARGET_BUILTIN(__hmma_m8n32k16_ld_a, "vi*iC*UiIi", "", AND(SM_70,PTX61)) [all …]
|
/freebsd/sys/dev/vmd/ |
H A D | vmd.c | 138 struct vmd_irq *vi; in vmd_free() local 152 vi = &sc->vmd_irq[i]; in vmd_free() 153 if (vi->vi_res == NULL) in vmd_free() 155 bus_teardown_intr(sc->psc.dev, vi->vi_res, 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() 366 vi->vi_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, in vmd_attach() [all …]
|
/freebsd/lib/libifconfig/ |
H A D | libifconfig_sfp.c | 273 get_sfp_vendor_info(struct i2c_info *ii, struct ifconfig_sfp_vendor_info *vi) in get_sfp_vendor_info() argument 275 get_sff_string(ii, SFF_8472_BASE, SFF_8472_VENDOR_START, vi->name); in get_sfp_vendor_info() 276 get_sff_string(ii, SFF_8472_BASE, SFF_8472_PN_START, vi->pn); in get_sfp_vendor_info() 277 get_sff_string(ii, SFF_8472_BASE, SFF_8472_SN_START, vi->sn); in get_sfp_vendor_info() 278 get_sff_date(ii, SFF_8472_BASE, SFF_8472_DATE_START, vi->date); in get_sfp_vendor_info() 283 get_qsfp_vendor_info(struct i2c_info *ii, struct ifconfig_sfp_vendor_info *vi) in get_qsfp_vendor_info() argument 285 get_sff_string(ii, SFF_8436_BASE, SFF_8436_VENDOR_START, vi->name); in get_qsfp_vendor_info() 286 get_sff_string(ii, SFF_8436_BASE, SFF_8436_PN_START, vi->pn); in get_qsfp_vendor_info() 287 get_sff_string(ii, SFF_8436_BASE, SFF_8436_SN_START, vi->sn); in get_qsfp_vendor_info() 288 get_sff_date(ii, SFF_8436_BASE, SFF_8436_DATE_START, vi->date); in get_qsfp_vendor_info() [all …]
|
/freebsd/sys/riscv/vmm/ |
H A D | vmm_dev_machdep.c | 72 struct vm_irq *vi; in vmmdev_machdep_ioctl() local 114 vi = (struct vm_irq *)data; in vmmdev_machdep_ioctl() 115 error = vm_assert_irq(vm, vi->irq); in vmmdev_machdep_ioctl() 118 vi = (struct vm_irq *)data; in vmmdev_machdep_ioctl() 119 error = vm_deassert_irq(vm, vi->irq); in vmmdev_machdep_ioctl()
|
/freebsd/sys/arm64/vmm/ |
H A D | vmm_dev_machdep.c | 74 struct vm_irq *vi; in vmmdev_machdep_ioctl() local 125 vi = (struct vm_irq *)data; in vmmdev_machdep_ioctl() 126 error = vm_assert_irq(vm, vi->irq); in vmmdev_machdep_ioctl() 129 vi = (struct vm_irq *)data; in vmmdev_machdep_ioctl() 130 error = vm_deassert_irq(vm, vi->irq); in vmmdev_machdep_ioctl()
|
/freebsd/usr.sbin/bhyve/ |
H A D | bhyverun.c | 375 struct vcpu_info *vi = param; in fbsdrun_start_thread() local 378 snprintf(tname, sizeof(tname), "vcpu %d", vi->vcpuid); in fbsdrun_start_thread() 381 if (vcpumap[vi->vcpuid] != NULL) { in fbsdrun_start_thread() 383 sizeof(cpuset_t), vcpumap[vi->vcpuid]); in fbsdrun_start_thread() 388 checkpoint_cpu_add(vi->vcpuid); in fbsdrun_start_thread() 391 gdb_cpu_add(vi->vcpu); in fbsdrun_start_thread() 394 vm_loop(vi->ctx, vi->vcpu); in fbsdrun_start_thread() 404 struct vcpu_info *vi; in fbsdrun_addcpu() local 408 vi = &vcpu_info[vcpuid]; in fbsdrun_addcpu() 410 error = vm_activate_cpu(vi->vcpu); in fbsdrun_addcpu() [all …]
|
/freebsd/contrib/nvi/cl/ |
H A D | README.signal | 1 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 58 on DISCARD and LNEXT. To clarify, what vi WANTS is 8-bit clean, with 70 The second problem is that vi permits you to enter literal signal [all …]
|
/freebsd/lib/libedit/ |
H A D | Makefile | 19 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
|