| /freebsd-12.1/sys/dev/drm/ |
| H A D | savage_state.c | 796 const struct drm_clip_rect *boxes) in savage_dispatch_clear() argument 826 x = boxes[i].x1, y = boxes[i].y1; in savage_dispatch_clear() 827 w = boxes[i].x2 - boxes[i].x1; in savage_dispatch_clear() 828 h = boxes[i].y2 - boxes[i].y1; in savage_dispatch_clear() 866 unsigned int nbox, const struct drm_clip_rect *boxes) in savage_dispatch_swap() argument 884 DMA_WRITE(BCI_X_Y(boxes[i].x1, boxes[i].y1)); in savage_dispatch_swap() 885 DMA_WRITE(BCI_X_Y(boxes[i].x1, boxes[i].y1)); in savage_dispatch_swap() 886 DMA_WRITE(BCI_W_H(boxes[i].x2 - boxes[i].x1, in savage_dispatch_swap() 887 boxes[i].y2 - boxes[i].y1)); in savage_dispatch_swap() 901 const struct drm_clip_rect *boxes) in savage_dispatch_draw() argument [all …]
|
| H A D | r128_state.c | 54 OUT_RING(boxes[0].x1); in r128_emit_clip_rects() 55 OUT_RING(boxes[0].x2 - 1); in r128_emit_clip_rects() 56 OUT_RING(boxes[0].y1); in r128_emit_clip_rects() 57 OUT_RING(boxes[0].y2 - 1); in r128_emit_clip_rects() 63 OUT_RING(boxes[1].x1); in r128_emit_clip_rects() 64 OUT_RING(boxes[1].x2 - 1); in r128_emit_clip_rects() 65 OUT_RING(boxes[1].y1); in r128_emit_clip_rects() 66 OUT_RING(boxes[1].y2 - 1); in r128_emit_clip_rects() 72 OUT_RING(boxes[2].x1); in r128_emit_clip_rects() 73 OUT_RING(boxes[2].x2 - 1); in r128_emit_clip_rects() [all …]
|
| H A D | mga_state.c | 511 struct drm_clip_rect *pbox = sarea_priv->boxes; in mga_dma_dispatch_clear() 601 struct drm_clip_rect *pbox = sarea_priv->boxes; in mga_dma_dispatch_swap() 672 &sarea_priv->boxes[i]); in mga_dma_dispatch_vertex() 719 &sarea_priv->boxes[i]); in mga_dma_dispatch_indices() 807 struct drm_clip_rect *pbox = sarea_priv->boxes; in mga_dma_dispatch_blit()
|
| H A D | mach64_drm.h | 136 struct drm_clip_rect boxes[MACH64_NR_SAREA_CLIPRECTS]; member
|
| H A D | mach64_state.c | 230 struct drm_clip_rect *pbox = sarea_priv->boxes; in mach64_dma_dispatch_clear() 369 struct drm_clip_rect *pbox = sarea_priv->boxes; in mach64_dma_dispatch_swap() 605 &sarea_priv->boxes[i]); in mach64_dma_dispatch_vertex()
|
| H A D | via_drm.h | 189 struct drm_clip_rect boxes[VIA_NR_SAREA_CLIPRECTS]; member
|
| H A D | r128_drm.h | 159 struct drm_clip_rect boxes[R128_NR_SAREA_CLIPRECTS]; member
|
| H A D | mga_drm.h | 187 struct drm_clip_rect boxes[MGA_NR_SAREA_CLIPRECTS]; member
|
| /freebsd-12.1/contrib/dialog/package/debian/ |
| H A D | control | 12 Description: dialog - display dialog boxes from shell scripts 14 or display messages using dialog boxes from a shell script. These 15 types of dialog boxes are implemented (though not all are necessarily
|
| /freebsd-12.1/contrib/dialog/ |
| H A D | dialog.lsm | 2 Title: dialog - Display dialog boxes in scripts 7 non-graphical dialog boxes from a shell or perl script. 8 Various dialog boxes can be presented such as yes/no, menu,
|
| /freebsd-12.1/contrib/dialog/package/ |
| H A D | dialog.spec | 1 Summary: dialog - display dialog boxes from shell scripts 18 or display messages using dialog boxes from a shell script. These 19 types of dialog boxes are implemented (though not all are necessarily
|
| /freebsd-12.1/usr.sbin/bsdconfig/include/ |
| H A D | usage.hlp | 20 PAGE UP In text display boxes, scrolls up one page. 21 PAGE DOWN In text display boxes, scrolls down one page. 27 display boxes, the amount of text above the current point will be
|
| /freebsd-12.1/share/examples/bootforth/ |
| H A D | frames.4th | 2 \ XXX Filled boxes are left as an exercise for the reader... ;-/
|
| /freebsd-12.1/release/scripts/ |
| H A D | atlas-upload.sh | 87 …/usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/boxes -X POST -d "box[name]=${BOX}" -d "access_t…
|
| /freebsd-12.1/contrib/dialog/samples/ |
| H A D | sourcemage.rc | 24 # Shadow dialog boxes? This also turns on color.
|
| H A D | slackware.rc | 24 # Shadow dialog boxes? This also turns on color.
|
| H A D | whiptail.rc | 24 # Shadow dialog boxes? This also turns on color.
|
| H A D | suse.rc | 24 # Shadow dialog boxes? This also turns on color.
|
| H A D | debian.rc | 25 # Shadow dialog boxes? This also turns on color.
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | convex | 4 # convex: file(1) magic for Convex boxes
|
| /freebsd-12.1/sys/dev/drm2/radeon/ |
| H A D | radeon_drm.h | 446 struct drm_clip_rect boxes[RADEON_NR_SAREA_CLIPRECTS]; member 662 struct drm_clip_rect __user *boxes; member
|
| H A D | radeon_drv.h | 214 u32 boxes; member 325 struct drm_clip_rect __user *boxes; member 2003 if (!(dev_priv->stats.boxes & RADEON_BOX_DMA_IDLE)) { \ 2006 dev_priv->stats.boxes |= RADEON_BOX_DMA_IDLE; \
|
| /freebsd-12.1/contrib/ncurses/progs/ |
| H A D | tic.c | 1049 const char *boxes = "lmkjtuvwqxn"; in check_acs() local 1068 for (p = boxes, q = missing; *p != '\0'; ++p) { in check_acs() 1075 assert(strlen(missing) <= strlen(boxes)); in check_acs() 1076 if (*missing != '\0' && strcmp(missing, boxes)) { in check_acs()
|
| /freebsd-12.1/usr.sbin/bsdconfig/share/ |
| H A D | dialog.subr | 570 # `--infobox' boxes sensibly. 731 # `--inputbox' boxes sensibly. 796 # `--2inputsbox' boxes sensibly. 874 # `--menu' boxes sensibly. 967 # `--menu' boxes sensibly. 1072 # `--radiolist' boxes sensibly. 1168 # `--checklist' boxes sensibly. 1193 # `--radiolist' boxes sensibly. 1309 # `--checklist' boxes sensibly. 1332 # `--calendar' boxes sensibly. [all …]
|
| /freebsd-12.1/stand/forth/ |
| H A D | frames.4th | 33 \ XXX Filled boxes are left as an exercise for the reader... ;-/
|