| /src/sys/dev/vt/ |
| H A D | vt_core.c | 124 #define VT_UNIT(vw) ((vw)->vw_device->vd_unit * VT_MAXWINDOWS + \ argument 125 (vw)->vw_number) 313 vt_resume_flush_timer(struct vt_window *vw, int ms) in vt_resume_flush_timer() argument 315 struct vt_device *vd = vw->vw_device; in vt_resume_flush_timer() 317 if (vd->vd_curwindow != vw) in vt_resume_flush_timer() 352 vt_save_kbd_mode(struct vt_window *vw, keyboard_t *kbd) in vt_save_kbd_mode() argument 363 vw->vw_kbdmode = mode; in vt_save_kbd_mode() 369 vt_update_kbd_mode(struct vt_window *vw, keyboard_t *kbd) in vt_update_kbd_mode() argument 373 ret = kbdd_ioctl(kbd, KDSKBMODE, (caddr_t)&vw->vw_kbdmode); in vt_update_kbd_mode() 381 vt_save_kbd_state(struct vt_window *vw, keyboard_t *kbd) in vt_save_kbd_state() argument [all …]
|
| H A D | vt_cpulogos.c | 152 struct vt_window *vw; in vt_fini_logos() local 176 vw = vd->vd_windows[i]; in vt_fini_logos() 177 if (vw == NULL) in vt_fini_logos() 179 tm = vw->vw_terminal; in vt_fini_logos() 180 vf = vw->vw_font; in vt_fini_logos() 189 vtbuf_grow(&vw->vw_buf, &size, vw->vw_buf.vb_history_size); in vt_fini_logos() 191 terminal_set_cursor(tm, &vw->vw_buf.vb_cursor); in vt_fini_logos() 195 vt_compute_drawable_area(vw); in vt_fini_logos() 197 if (vd->vd_curwindow == vw) { in vt_fini_logos() 199 vt_resume_flush_timer(vw, 0); in vt_fini_logos() [all …]
|
| H A D | vt.h | 189 void vt_resume_flush_timer(struct vt_window *vw, int ms); 328 #define IS_VT_PROC_MODE(vw) ((vw)->vw_smode.mode == VT_PROCESS) argument 339 typedef void vd_bitblt_text_t(struct vt_device *vd, const struct vt_window *vw, 343 typedef void vd_bitblt_bmp_t(struct vt_device *vd, const struct vt_window *vw, 347 typedef int vd_bitblt_argb_t(struct vt_device *vd, const struct vt_window *vw,
|
| /src/sys/dev/vt/hw/fb/ |
| H A D | vt_fb.c | 279 vt_fb_bitblt_bitmap(struct vt_device *vd, const struct vt_window *vw, in vt_fb_bitblt_bitmap() argument 301 if (y + height > vw->vw_draw_area.tr_end.tp_row) { in vt_fb_bitblt_bitmap() 302 if (y >= vw->vw_draw_area.tr_end.tp_row) in vt_fb_bitblt_bitmap() 304 height = vw->vw_draw_area.tr_end.tp_row - y; in vt_fb_bitblt_bitmap() 306 if (x + width > vw->vw_draw_area.tr_end.tp_col) { in vt_fb_bitblt_bitmap() 307 if (x >= vw->vw_draw_area.tr_end.tp_col) in vt_fb_bitblt_bitmap() 309 width = vw->vw_draw_area.tr_end.tp_col - x; in vt_fb_bitblt_bitmap() 344 vt_fb_bitblt_argb(struct vt_device *vd, const struct vt_window *vw, in vt_fb_bitblt_argb() argument 364 if (y + height > vw->vw_draw_area.tr_end.tp_row) { in vt_fb_bitblt_argb() 365 if (y >= vw->vw_draw_area.tr_end.tp_row) in vt_fb_bitblt_argb() [all …]
|
| /src/sys/dev/vt/hw/vga/ |
| H A D | vt_vga.c | 611 const struct vt_window *vw, unsigned int x, unsigned int y) in vga_bitblt_one_text_pixels_block() argument 617 uint8_t pattern_2colors[vw->vw_font->vf_height]; in vga_bitblt_one_text_pixels_block() 618 uint8_t pattern_ncolors[vw->vw_font->vf_height * 16]; in vga_bitblt_one_text_pixels_block() 623 vb = &vw->vw_buf; in vga_bitblt_one_text_pixels_block() 624 vf = vw->vw_font; in vga_bitblt_one_text_pixels_block() 641 if (i < vw->vw_draw_area.tr_begin.tp_col) { in vga_bitblt_one_text_pixels_block() 647 i = vw->vw_draw_area.tr_begin.tp_col; in vga_bitblt_one_text_pixels_block() 651 i < vw->vw_draw_area.tr_end.tp_col) { in vga_bitblt_one_text_pixels_block() 659 col = (i - vw->vw_draw_area.tr_begin.tp_col) / vf->vf_width; in vga_bitblt_one_text_pixels_block() 660 row = (y - vw->vw_draw_area.tr_begin.tp_row) / vf->vf_height; in vga_bitblt_one_text_pixels_block() [all …]
|
| /src/sys/dev/vt/hw/ofwfb/ |
| H A D | ofwfb.c | 133 ofwfb_bitblt_bitmap(struct vt_device *vd, const struct vt_window *vw, in ofwfb_bitblt_bitmap() argument 210 l < height && y + l < vw->vw_draw_area.tr_end.tp_row; in ofwfb_bitblt_bitmap() 213 c < width && x + c < vw->vw_draw_area.tr_end.tp_col; in ofwfb_bitblt_bitmap() 248 ofwfb_bitblt_argb(struct vt_device *vd, const struct vt_window *vw, in ofwfb_bitblt_argb() argument 258 ofwfb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, in ofwfb_bitblt_text() argument 267 vf = vw->vw_font; in ofwfb_bitblt_text() 273 vw->vw_draw_area.tr_begin.tp_col; in ofwfb_bitblt_text() 275 vw->vw_draw_area.tr_begin.tp_row; in ofwfb_bitblt_text() 277 c = VTBUF_GET_FIELD(&vw->vw_buf, row, col); in ofwfb_bitblt_text() 280 VTBUF_ISCURSOR(&vw->vw_buf, row, col), &fg, &bg); in ofwfb_bitblt_text() [all …]
|
| /src/sys/dev/virtio/gpu/ |
| H A D | virtio_gpu.c | 146 vtgpu_fb_bitblt_text(struct vt_device *vd, const struct vt_window *vw, in vtgpu_fb_bitblt_text() argument 156 vt_fb_bitblt_text(vd, vw, area); in vtgpu_fb_bitblt_text() 158 x = area->tr_begin.tp_col * vw->vw_font->vf_width + vw->vw_draw_area.tr_begin.tp_col; in vtgpu_fb_bitblt_text() 159 y = area->tr_begin.tp_row * vw->vw_font->vf_height + vw->vw_draw_area.tr_begin.tp_row; in vtgpu_fb_bitblt_text() 160 width = area->tr_end.tp_col * vw->vw_font->vf_width + vw->vw_draw_area.tr_begin.tp_col - x; in vtgpu_fb_bitblt_text() 161 height = area->tr_end.tp_row * vw->vw_font->vf_height + vw->vw_draw_area.tr_begin.tp_row - y; in vtgpu_fb_bitblt_text() 168 vtgpu_fb_bitblt_bitmap(struct vt_device *vd, const struct vt_window *vw, in vtgpu_fb_bitblt_bitmap() argument 179 vt_fb_bitblt_bitmap(vd, vw, pattern, mask, width, height, x, y, fg, bg); in vtgpu_fb_bitblt_bitmap() 186 vtgpu_fb_bitblt_argb(struct vt_device *vd, const struct vt_window *vw, in vtgpu_fb_bitblt_argb() argument
|
| /src/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VEInstrIntrinsicVL.gen.td | 874 …add_vvvvl v256f64:$vy, v256f64:$vz, v256f64:$vw, i32:$vl), (VFMADDvvvl v256f64:$vy, v256f64:$vz, v… 875 …l v256f64:$vy, v256f64:$vz, v256f64:$vw, v256f64:$pt, i32:$vl), (VFMADDvvvl_v v256f64:$vy, v256f64… 876 …vl_vfmadd_vsvvl f64:$sy, v256f64:$vz, v256f64:$vw, i32:$vl), (VFMADDrvvl f64:$sy, v256f64:$vz, v25… 877 …_vsvvvl f64:$sy, v256f64:$vz, v256f64:$vw, v256f64:$pt, i32:$vl), (VFMADDrvvl_v f64:$sy, v256f64:$… 878 …vl_vfmadd_vvsvl v256f64:$vy, f64:$sy, v256f64:$vw, i32:$vl), (VFMADDvrvl v256f64:$vy, f64:$sy, v25… 879 …_vvsvvl v256f64:$vy, f64:$sy, v256f64:$vw, v256f64:$pt, i32:$vl), (VFMADDvrvl_v v256f64:$vy, f64:$… 880 …f64:$vy, v256f64:$vz, v256f64:$vw, v256i1:$vm, v256f64:$pt, i32:$vl), (VFMADDvvvml_v v256f64:$vy, … 881 …l f64:$sy, v256f64:$vz, v256f64:$vw, v256i1:$vm, v256f64:$pt, i32:$vl), (VFMADDrvvml_v f64:$sy, v2… 882 …l v256f64:$vy, f64:$sy, v256f64:$vw, v256i1:$vm, v256f64:$pt, i32:$vl), (VFMADDvrvml_v v256f64:$vy… 883 …ads_vvvvl v256f64:$vy, v256f64:$vz, v256f64:$vw, i32:$vl), (VFMADSvvvl v256f64:$vy, v256f64:$vz, v… [all …]
|
| H A D | VEInstrFormats.td | 258 bits<8> vw = 0; 272 let Inst{7-0} = vw;
|
| H A D | VEInstrVec.td | 664 let cy = 0, sy = 0, vy = ?, vz = ?, vw = ? in 665 defm vvv : RVmm<opcStr, ", $vy, $vz, $vw", opc, VRC, RCM, 666 (ins VRC:$vy, VRC:$vz, VRC:$vw)>; 667 let cs2 = 1, vy = ?, vw = ? in 668 defm vrv : RVmm<opcStr, ", $vy, $sy, $vw", opc, VRC, RCM, 669 (ins VRC:$vy, RC:$sy, VRC:$vw)>; 670 let cs2 = 1, cy = 0, vy = ?, vw = ? in 671 defm viv : RVmm<opcStr, ", $vy, $sy, $vw", opc, VRC, RCM, 672 (ins VRC:$vy, SIMM:$sy, VRC:$vw)>; 673 let cs = 1, vz = ?, vw = ? in [all …]
|
| /src/contrib/sendmail/contrib/ |
| H A D | expn.pl | 128 $vw = $flag_v + $flag_w; 204 if ($debug || $vw); 214 if ($debug || $vw); 381 …ng some valid to avoid invalid ".&compact($u,$server)."\n" if ($avgValid > 0.0 && ($vw || $debug)); 400 print "----------\n" if $vw; 694 print STDERR "Could not parse $newaddr\n" if $vw; 1063 print "$server -> $nserver\n" if $vw && !$debug;
|
| /src/sys/compat/linux/ |
| H A D | linux_ioctl.c | 2720 linux_to_bsd_v4l_window(struct l_video_window *lvw, struct video_window *vw) in linux_to_bsd_v4l_window() argument 2722 vw->x = lvw->x; in linux_to_bsd_v4l_window() 2723 vw->y = lvw->y; in linux_to_bsd_v4l_window() 2724 vw->width = lvw->width; in linux_to_bsd_v4l_window() 2725 vw->height = lvw->height; in linux_to_bsd_v4l_window() 2726 vw->chromakey = lvw->chromakey; in linux_to_bsd_v4l_window() 2727 vw->flags = lvw->flags; in linux_to_bsd_v4l_window() 2728 vw->clips = PTRIN(lvw->clips); /* possible pointer size conversion */ in linux_to_bsd_v4l_window() 2729 vw->clipcount = lvw->clipcount; in linux_to_bsd_v4l_window() 2734 bsd_to_linux_v4l_window(struct video_window *vw, struct l_video_window *lvw) in bsd_to_linux_v4l_window() argument [all …]
|
| /src/tools/test/stress2/tools/ |
| H A D | ps.sh | 45 ps -ax -Oppid,wchan | grep -vw Z > $log
|
| /src/crypto/openssl/crypto/sm3/asm/ |
| H A D | sm3-armv8.pl | 70 my $vw = shift; 77 sm3tt1$ab $vstate0.4s, $vtmp.4s, $vw.4s[$i]
|
| /src/sys/dev/vt/hw/simplefb/ |
| H A D | simplefb.c | 228 vt_simplefb_bitblt_argb(struct vt_device *vd, const struct vt_window *vw, in vt_simplefb_bitblt_argb() argument
|
| /src/contrib/file/magic/Magdir/ |
| H A D | sniffer | 437 # defs/0/5vw.trid.xml 444 # verified/falsified by `wireshark *.5vw` 455 !:ext 5vw
|
| /src/contrib/netbsd-tests/usr.bin/grep/ |
| H A D | t_grep.sh | 494 atf_check -o file:test2 grep -vw -e "" test2 498 atf_check -o file:test4 grep -vw -e "" test4
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IntrinsicsRISCVXsf.td | 131 …def "int_riscv_sf_vc_v_" # t # "vw" : RISCVSFCustomVC_XVW<HasDst=1, HasSE=0, ImmScalar=ImmScala…
|
| /src/crypto/openssl/doc/man3/ |
| H A D | ASYNC_start_job.pod | 215 void cleanup(ASYNC_WAIT_CTX *ctx, const void *key, OSSL_ASYNC_FD r, void *vw) 217 OSSL_ASYNC_FD *w = (OSSL_ASYNC_FD *)vw;
|
| /src/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoV.td | 587 multiclass VALU_MV_V_X<string opcodestr, bits<6> funct6, string vw> { 588 def V : VALUVV<funct6, OPMVV, opcodestr # "." # vw # "v">, 590 def X : VALUVX<funct6, OPMVX, opcodestr # "." # vw # "x">, 671 multiclass VWALU_FV_V_F<string opcodestr, bits<6> funct6, string vw> { 672 def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">, 674 def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
|
| /src/sys/net/ |
| H A D | rtsock.c | 203 static int sysctl_dumpentry(struct rtentry *rt, void *vw); 2250 sysctl_dumpentry(struct rtentry *rt, void *vw) in sysctl_dumpentry() argument 2252 struct walkarg *w = vw; in sysctl_dumpentry()
|
| /src/sys/compat/linprocfs/ |
| H A D | linprocfs.c | 1522 linux_route_print(struct rtentry *rt, void *vw) in linux_route_print() argument 1525 struct walkarg *w = vw; in linux_route_print()
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | riscv_vector.td | 1274 [["v", "vw"], 1930 def vfncvt_rod_f_f_w : RVVConvBuiltin<"v", "vw", "xf", "vfncvt_rod_f">; 2069 defm : RVVConvBuiltinSet<"vfncvt_f_f_w", "f", [["v", "vw"]]>; 2071 defm : RVVConvBuiltinSet<"vfncvt_f_f_w", "x", [["v", "vw"]]>;
|
| /src/sys/contrib/dev/acpica/ |
| H A D | changes.txt | 516 "-vw 3141" 2577 iASL: Expanded the -vw option (ignore specific warnings/remarks) to 5902 Adds a new command line option, "-vw <messageid> as well as "#pragma
|