| /src/lib/libcurses/ |
| box.c | 1 /* $NetBSD: box.c,v 1.15 2017/01/06 13:53:18 roy Exp $ */ 35 static char sccsid[] = "@(#)box.c 8.2 (Berkeley) 5/4/94"; 37 __RCSID("$NetBSD: box.c,v 1.15 2017/01/06 13:53:18 roy Exp $"); 44 * box -- 45 * Draw a box around the given window with "vert" as the vertical 49 box(WINDOW *win, chtype vert, chtype hor) function
|
| /src/external/bsd/nvi/dist/gtk/ |
| gtk_main.c | 76 GtkWidget *box, *menubar; local 85 box = gtk_vbox_new(FALSE, 0); 86 gtk_container_add(GTK_CONTAINER(window), box); local 87 gtk_widget_show(box); 97 gtk_box_pack_start(GTK_BOX(box), menubar, FALSE, FALSE, 0); 108 gtk_box_pack_start(GTK_BOX(box), vi_window, TRUE, TRUE, 0);
|
| /src/sys/arch/atari/dev/ |
| grfabs_tt.c | 294 box_t box; local 298 INIT_BOX(&box,0,0,mode->size.width,mode->size.height); 299 init_view(v, bm, mode, &box);
|
| grfabs_fal.c | 522 box_t box; local 526 INIT_BOX(&box,0,0,mode->size.width,mode->size.height); 527 init_view(v, bm, mode, &box);
|
| grfabs_et.c | 309 box_t box; local 356 INIT_BOX(&box,0,0,mode->size.width,mode->size.height); 357 init_view(v, bm, mode, &box);
|
| grfabs_reg.h | 48 struct box { struct 54 typedef struct box box_t;
|
| /src/external/bsd/nvi/dist/motif_l/ |
| m_ruler.c | 167 Widget box; 188 box = XtVaCreatePopupShell( title, 194 XtAddCallback( box, XmNpopdownCallback, cancel_cb, 0 ); 195 XtAddCallback( box, XmNdestroyCallback, destroyed, 0 ); 206 box, 163 Widget box; local
|
| m_options.c | 578 Widget box, form, inner; 585 box = XtVaCreatePopupShell( title, 592 XtAddCallback( box, XmNpopdownCallback, __vi_cancel_cb, 0 ); 593 XtAddCallback( box, XmNdestroyCallback, destroyed, 0 ); 594 XtAddEventHandler( box, 603 box, 570 Widget box, form, inner; local
|
| m_search.c | 369 * box almost certainly obscured a chunk of the text file, so there's no 405 Widget box, form, label, text, checks, buttons, form2; 410 box = dialogs->shell; 414 return box; 417 box = XtVaCreatePopupShell( title, 427 box, 486 return box; 396 Widget box, form, label, text, checks, buttons, form2; local
|
| m_tags.c | 329 Widget box, form, form2, form3, buttons; 334 box = XtVaCreatePopupShell( title, 341 XtAddCallback( box, XmNpopdownCallback, cancel_cb, 0 ); 342 XtAddCallback( box, XmNdestroyCallback, destroyed, 0 ); 346 box, 323 Widget box, form, form2, form3, buttons; local
|
| /src/external/mit/isl/dist/ |
| bound.c | 31 isl_set *box; local 46 box = isl_set_box_from_points(pt, pt2); 48 return isl_set_intersect(set, box);
|
| isl_box.c | 22 /* Representation of a box of fixed size containing the elements 27 * the failure of finding a fixed-size box. 34 /* Free "box" and return NULL. 36 __isl_null isl_fixed_box *isl_fixed_box_free(__isl_take isl_fixed_box *box) 38 if (!box) 40 isl_multi_aff_free(box->offset); 41 isl_multi_val_free(box->size); 42 free(box); 52 isl_fixed_box *box; local 57 box = isl_alloc_type(ctx, struct isl_fixed_box) 391 isl_fixed_box *box; local 421 isl_fixed_box *box; local 461 isl_fixed_box *box; local [all...] |
| pip.c | 70 isl_basic_set *box; local 85 box = isl_basic_set_box_from_points(pt, pt2); 87 return isl_basic_set_intersect(bset, box);
|
| /src/external/gpl2/groff/dist/src/preproc/eqn/ |
| box.cpp | 1 /* $NetBSD: box.cpp,v 1.1.1.1 2016/01/13 18:41:49 christos Exp $ */ 268 int box::next_uid = 0; 270 box::box() : spacing_type(ORDINARY_TYPE), uid(next_uid++) function in class:box 274 box::~box() 278 void box::top_level() 282 box *b = this; 350 void box::extra_space() 377 int box::compute_metrics(int [all...] |
| box.h | 1 /* $NetBSD: box.h,v 1.1.1.1 2016/01/13 18:41:49 christos Exp $ */ 26 class box { class 32 box(); 34 virtual ~box(); 57 box **p; 60 box_list(box *); 62 void append(box *); 69 box *make_script_box(box *, box *, box *) [all...] |
| /src/sys/external/bsd/drm/dist/shared-core/ |
| i915_dma.c | 396 struct drm_clip_rect box; local 399 if (DRM_COPY_FROM_USER_UNCHECKED(&box, &boxes[i], sizeof(box))) { 403 if (box.y2 <= box.y1 || box.x2 <= box.x1 || box.y2 <= 0 || box.x2 <= 0) { 404 DRM_ERROR("Bad box %d,%d..%d,%d\n" [all...] |
| r300_cmdbuf.c | 58 struct drm_clip_rect box; local 75 (&box, &cmdbuf->boxes[n + i], sizeof(box))) { 80 box.x2--; /* Hardware expects inclusive bottom-right corner */ 81 box.y2--; 84 box.x1 = (box.x1) & 86 box.y1 = (box.y1) & 88 box.x2 = (box.x2) [all...] |
| mga_state.c | 46 struct drm_clip_rect * box) 64 MGA_CXBNDRY, ((box->x2 - 1) << 16) | box->x1, 65 MGA_YTOP, box->y1 * pitch, MGA_YBOT, (box->y2 - 1) * pitch); 524 struct drm_clip_rect *box = &pbox[i]; local 525 u32 height = box->y2 - box->y1; 528 box->x1, box->y1, box->x2, box->y2) 625 struct drm_clip_rect *box = &pbox[i]; local [all...] |
| radeon_state.c | 430 struct drm_clip_rect * box) 434 DRM_DEBUG(" box: x1=%d y1=%d x2=%d y2=%d\n", 435 box->x1, box->y1, box->x2, box->y2); 439 OUT_RING((box->y1 << 16) | box->x1); 441 OUT_RING(((box->y2 - 1) << 16) | (box->x2 - 1)) 2779 struct drm_clip_rect box; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/mga/ |
| mga_state.c | 47 struct drm_clip_rect *box) 65 MGA_CXBNDRY, ((box->x2 - 1) << 16) | box->x1, 66 MGA_YTOP, box->y1 * pitch, MGA_YBOT, (box->y2 - 1) * pitch); 505 struct drm_clip_rect *box = &pbox[i]; local 506 u32 height = box->y2 - box->y1; 509 box->x1, box->y1, box->x2, box->y2) 603 struct drm_clip_rect *box = &pbox[i]; local [all...] |
| /src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
| virtgpu_drm.h | 119 struct drm_virtgpu_3d_box box; member in struct:drm_virtgpu_3d_transfer_to_host 126 struct drm_virtgpu_3d_box box; member in struct:drm_virtgpu_3d_transfer_from_host
|
| /src/games/hack/ |
| hack.shk.c | 326 boolean box, pick; local 333 box = carrying(ICE_BOX); 335 if (box || pick) { 341 (box && pick) ? "box and pick-axe" : 342 box ? "box" : "pick-axe");
|
| /src/sys/external/bsd/drm2/dist/drm/i810/ |
| i810_dma.c | 724 struct drm_clip_rect *box = sarea_priv->boxes; local 763 OUT_RING(box[i].x1 | (box[i].y1 << 16)); 764 OUT_RING((box[i].x2 - 765 1) | ((box[i].y2 - 1) << 16));
|
| /src/external/gpl2/groff/dist/src/roff/troff/ |
| div.cpp | 160 void box() function 1157 init_request("box", box);
|
| /src/sys/arch/amiga/dev/ |
| grfabs_reg.h | 48 struct box { struct 54 typedef struct box box_t;
|