| /src/lib/libcurses/ |
| border.c | 1 /* $NetBSD: border.c,v 1.26 2024/12/25 15:35:29 christos Exp $ */ 34 __RCSID("$NetBSD: border.c,v 1.26 2024/12/25 15:35:29 christos Exp $"); 46 * border -- 47 * Draw a border around stdscr using the specified 51 border(chtype left, chtype right, chtype top, chtype bottom, chtype topleft, function 62 * Draw a border around the given window using the specified delimiting 304 /* left border */ 348 /* right border */ 411 /* upper border */ 457 /* lower border */ [all...] |
| curses.h | 447 #define border(l, r, t, b, tl, tr, bl, br) \ macro 552 int border(chtype, chtype, chtype, chtype,
|
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/ |
| hello.cs | 21 private int border; field in class:Hello.HelloWindow 27 border = 2; 51 ClientSize = new Size(border + total.Width + border, border + total.Height + border); 55 LayoutControls(ClientSize.Width - border - border, ClientSize.Height - border - border); [all...] |
| /src/sbin/wsconsctl/ |
| display.c | 45 static int border; variable 60 { "border", &border, FMT_COLOR, 0 }, 123 if (field_by_value(&border)->flags & FLG_GET) 124 if (ioctl(fd, WSDISPLAYIO_GBORDER, &border) < 0) 125 field_disable_by_value(&border); 201 if (field_by_value(&border)->flags & FLG_SET) { 202 if (ioctl(fd, WSDISPLAYIO_SBORDER, &border) < 0) 204 pr_field(field_by_value(&border), " -> ");
|
| /src/external/bsd/tmux/dist/ |
| popup.c | 493 enum { NONE, LEFT, RIGHT, TOP, BOTTOM } border = NONE; local 522 border = LEFT; 524 border = RIGHT; 526 border = TOP; 528 border = BOTTOM; 532 (border == LEFT || border == TOP)) 535 (border != NONE && !MOUSE_DRAG(m->lb))) { 710 lines = options_get_number(o, "popup-border-lines"); 740 style_apply(&pd->border_cell, o, "popup-border-style", NULL) [all...] |
| screen-redraw.c | 42 /* Border in relation to a pane. */ 53 /* Get cell border character. */ 119 /* Check if cell is on the border of a pane. */ 140 switch (options_get_number(oo, "pane-border-indicators")) { 154 * active window's border when there are two panes. 212 /* Check if a cell is on a border. */ 228 /* On the window border? */ 249 /* Work out type of border cell from surrounding cells. */ 300 * Figure out what kind of border this cell is. Only one bit set 301 * doesn't make sense (can't have a border cell with no other 341 int border, pane_scrollbars = ctx->pane_scrollbars; local 435 enum screen_redraw_border_type border; local 749 int arrows = 0, border, isolates; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| intel_panel.c | 253 u32 border, sync_pos, blank_width, sync_width; local 260 border = (adjusted_mode->crtc_hdisplay - width + 1) / 2; 261 border += border & 1; /* make the border even */ 264 adjusted_mode->crtc_hblank_start = width + border; 275 u32 border, sync_pos, blank_width, sync_width; local 282 border = (adjusted_mode->crtc_vdisplay - height + 1) / 2; 285 adjusted_mode->crtc_vblank_start = height + border; 327 u32 *border) 387 u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-ssa-loop-split.cc | 76 and the split point can be computed. If so, also return the border 77 point in *BORDER and the comparison induction variable in IV. */ 80 split_at_bb_p (class loop *loop, basic_block bb, tree *border, affine_iv *iv, 185 *border = iv2.base; 406 space in NITER, an arbitrary new bound BORDER, assumed to be some 409 that other IV with BORDER. We return an SSA name, and place any 415 if (j < border) // this is supposed to be true/false 419 as long as the condition j < border stays true. We also don't want 423 newend = min (end+guard_init-beg, border) 434 tree border, 575 tree border = NULL_TREE; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-ssa-loop-split.cc | 73 and the split point can be computed. If so, also return the border 74 point in *BORDER and the comparison induction variable in IV. */ 77 split_at_bb_p (class loop *loop, basic_block bb, tree *border, affine_iv *iv) 146 *border = iv2.base; 367 space in NITER, an arbitrary new bound BORDER, assumed to be some 370 that other IV with BORDER. We return an SSA name, and place any 376 if (j < border) // this is supposed to be true/false 380 as long as the condition j < border stays true. We also don't want 384 newend = min (end+guard_init-beg, border) 395 tree border, 534 tree border = NULL_TREE; local [all...] |
| /src/sys/net/ |
| zlib.c | 3901 uInt index; /* index into blens (or border) */ 3975 local const uInt border[] = { /* Order of the bit length code lengths */ variable 4189 s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7; 4193 s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
|