| /src/external/bsd/tmux/dist/ |
| style.c | 49 style_set_range_string(struct style *sy, const char *s) 51 strlcpy(sy->range_string, s, sizeof sy->range_string); 60 style_parse(struct style *sy, const struct grid_cell *base, const char *in) 71 style_copy(&saved, sy); 88 sy->gc.fg = base->fg; 89 sy->gc.bg = base->bg; 90 sy->gc.us = base->us; 91 sy->gc.attr = base->attr; 92 sy->gc.flags = base->flags 370 struct style *sy; local 418 struct style *sy; local [all...] |
| resize.c | 26 resize_window(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel) 35 if (sy < WINDOW_MINIMUM) 36 sy = WINDOW_MINIMUM; 37 if (sy > WINDOW_MAXIMUM) 38 sy = WINDOW_MAXIMUM; 46 layout_resize(w, sx, sy); 51 if (sy < w->layout_root->sy) 52 sy = w->layout_root->sy; 355 u_int sx, sy, xpixel = 0, ypixel = 0; local [all...] |
| cmd-resize-window.c | 56 u_int adjust, sx, sy, xpixel = 0, ypixel = 0; local 69 sy = w->sy; 81 sy = args_strtonum(args, 'y', WINDOW_MINIMUM, WINDOW_MAXIMUM, 96 if (sy >= adjust) 97 sy -= adjust; 99 sy += adjust; 102 default_window_size(NULL, s, w, &sx, &sy, &xpixel, &ypixel, 105 default_window_size(NULL, s, w, &sx, &sy, &xpixel, &ypixel, 111 w->manual_sy = sy; [all...] |
| layout-set.c | 131 u_int n, sx, sy; local 147 sy = w->sy; 149 sy = (n * (PANE_MINIMUM + 1)) - 1; 150 if (sy < w->sy) 151 sy = w->sy; 154 layout_set_size(lc, sx, sy, 0, 0); 162 lcnew->sy = w->sy 197 u_int n, mainh, otherh, sx, sy; local 295 u_int n, mainh, otherh, sx, sy; local 393 u_int n, mainw, otherw, sx, sy; local 491 u_int n, mainw, otherw, sx, sy; local 590 u_int n, width, height, used, sx, sy; local [all...] |
| layout-custom.c | 87 lc->sx, lc->sy, lc->xoff, lc->yoff, lc->wp->id); 90 lc->sx, lc->sy, lc->xoff, lc->yoff); 131 if (lcchild->sy != lc->sy) 146 n += lcchild->sy + 1; 148 if (n - 1 != lc->sy) 161 u_int npanes, ncells, sx = 0, sy = 0; local 213 sy = lcchild->sy + 1; 220 sy += lcchild->sy + 1 287 u_int sx, sy, xoff, yoff; local [all...] |
| screen.c | 34 u_int sy; member in struct:screen_sel 74 screen_init(struct screen *s, u_int sx, u_int sy, u_int hlimit) 76 s->grid = grid_create(sx, sy, hlimit); 125 grid_clear_lines(s->grid, s->grid->hsize, s->grid->sy, 8); 301 screen_resize_cursor(struct screen *s, u_int sx, u_int sy, int reflow, 310 __func__, sx, sy, screen_size_x(s), screen_size_y(s), s->cx, s->cy, 315 if (sy < 1) 316 sy = 1; 324 if (sy != screen_size_y(s)) 325 screen_resize_y(s, sy, eat_empty, &cy) 636 u_int sx, sy; local 665 u_int sx = screen_size_x(s), sy = screen_size_y(s); local [all...] |
| image.c | 56 image_fallback(char **ret, u_int sx, u_int sy) 62 lsize = xasprintf(&label, "SIXEL IMAGE (%ux%u)\r\n", sx, sy) + 1; 69 size += (sx + 2) * (sy - 1) + 1; 86 for (py = 1; py < sy; py++) { 107 sixel_size_in_cells(si, &im->sx, &im->sy); 109 image_fallback(&im->fallback, im->sx, im->sy); 127 if (py + ny > im->py && py < im->py + im->sy) { 142 if (py + ny <= im->py || py >= im->py + im->sy) 157 u_int sx, sy; local 166 if (im->py + im->sy <= lines) [all...] |
| cmd-display-panes.c | 68 u_int pane, idx, px, py, i, j, xoff, yoff, sx, sy; local 75 wp->yoff + wp->sy <= ctx->oy || 76 wp->yoff >= ctx->oy + ctx->sy) 97 if (wp->yoff >= ctx->oy && wp->yoff + wp->sy <= ctx->oy + ctx->sy) { 100 sy = wp->sy; 102 wp->yoff + wp->sy > ctx->oy + ctx->sy) { 105 sy = ctx->sy [all...] |
| cmd-rotate-window.c | 53 u_int sx, sy, xoff, yoff; local 64 sx = wp->sx; sy = wp->sy; 72 window_pane_resize(wp, wp2->sx, wp2->sy); 78 window_pane_resize(wp, sx, sy); 89 sx = wp->sx; sy = wp->sy; 97 window_pane_resize(wp, wp2->sx, wp2->sy); 103 window_pane_resize(wp, sx, sy);
|
| grid-view.c | 73 for (yy = 0; yy < gd->sy; yy++) { 79 grid_view_clear(gd, 0, 0, gd->sx, gd->sy, bg); 88 if (last < gd->sy) 89 grid_view_clear(gd, 0, 0, gd->sx, gd->sy - last, bg); 111 if (rupper == 0 && rlower == gd->sy - 1) 140 u_int sy; local 144 sy = grid_view_y(gd, gd->sy); 146 grid_move_lines(gd, py + ny, py, sy - py - ny, bg); 169 u_int sy; local [all...] |
| layout.c | 62 lc->sy = UINT_MAX; 117 lc->sy); 136 y >= lcchild->yoff && y < lcchild->yoff + lcchild->sy) { 152 if (y < lcchild->yoff && y >= last->yoff + last->sy) 166 layout_set_size(struct layout_cell *lc, u_int sx, u_int sy, u_int xoff, 170 lc->sy = sy; 224 yoff += lcchild->sy + 1; 295 u_int sx, sy; local 308 sy = lc->sy 913 u_int sx, sy, xoff, yoff, size1, size2, minimum; local [all...] |
| /src/sys/sys/ |
| syscallvar.h | 59 sy_call(const struct sysent *sy, struct lwp *l, const void *uap, 64 l->l_sysent = sy; 65 error = (*sy->sy_call)(l, uap, rval); 72 sy_invoke(const struct sysent *sy, struct lwp *l, const void *uap, 76 (sy->sy_flags & SYCALL_INDIRECT) == 0; 84 if (__predict_true(!(do_trace || KDTRACE_ENTRY(sy->sy_entry))) 85 || (error = trace_enter(code, sy, uap)) == 0) { 94 error = sy_call(sy, l, uap, rval); 97 if (__predict_false(do_trace || KDTRACE_ENTRY(sy->sy_return))) { 98 trace_exit(code, sy, uap, rval, error) [all...] |
| /src/games/hack/ |
| hack.mkshop.c | 93 int sh, sx, sy, i = -1; local 158 sy = doors[sh].y; 163 else if (sy == sroom->ly - 1) 164 sy++; 165 else if (sy == sroom->hy + 1) 166 sy--; 187 if (!(shk = makemon(PM_SHK, sx, sy))) 196 ESHK->shk.y = sy; 204 for (sy = sroom->ly; sy <= sroom->hy; sy++) 227 int sh, sx, sy, i; local 303 int sx, sy, i, eelct = 0; local [all...] |
| /src/external/bsd/ntp/dist/scripts/monitoring/ |
| lr.pl | 51 $self->{sy} = 0.0; 62 $self->{sy} += $_y; 73 return ($self->{n} * $self->{sxy} - $self->{sx} * $self->{sy}) 81 return ($self->{sy} - B() * $self->{sx}) / $self->{n}; 103 * ($self->{n} * $self->{sy2} - $self->{sy}**2); 107 return ($self->{n} * $self->{sxy} - $self->{sx} * $self->{sy}) / sqrt($s); 114 return ($self->{sxy} - $self->{sx} * $self->{sy} / $self->{n}) 123 return sqrt(($self->{sy2} - ($self->{sy} * $self->{sy}) / $self->{n}) 132 return $self->{sy} / $self->{n} [all...] |
| /src/sys/kern/ |
| kern_syscall.c | 66 const struct sysent *sy; local 77 sy = l->l_sysent; 78 if (sy->sy_call != sys_nomodule) { 87 code = sy - em->e_sysent; 96 sy->sy_call == sys_nomodule) { 111 struct sysent *sy; local 119 sy = em->e_sysent; 130 if (sy[sp[i].sp_code].sy_call != sys_nomodule && 131 sy[sp[i].sp_code].sy_call != sys_nosys) { 140 sy[sp[i].sp_code].sy_call = sp[i].sp_call 149 struct sysent *sy; local 249 (*e->e_dtrace_syscall)(sy->sy_entry, code, sy, args, local 292 (*p->p_emul->e_dtrace_syscall)(sy->sy_return, code, sy, local [all...] |
| kern_scdebug.c | 136 const struct sysent *sy; local 147 sy = &em->e_sysent[code]; 150 (CODE_NOT_OK(code, em) || sy->sy_call == sys_nosys)) { 178 p->p_pid, l->l_lid, code, (uintptr_t)sy->sy_call); 182 if (sy->sy_narg > 7) { 187 } else if (sy->sy_narg > 6) { 192 } else if (sy->sy_narg > 5) { 196 } else if (sy->sy_narg == 5) { 202 if (sy->sy_narg > 3) { 207 } else if (sy->sy_narg > 2) 247 const struct sysent *sy; local [all...] |
| /src/usr.bin/make/unit-tests/ |
| shell-csh.exp | 8 They chatted in the sy.
|
| /src/external/lgpl3/mpfr/dist/src/ |
| set_f.c | 33 mp_size_t sx, sy; local 49 sy = MPFR_LIMB_SIZE (y); 55 if (sy <= sx) /* we may have to round even when sy = sx */ 70 my[sy - 1] = MPFR_LIMB_HIGHBIT; 76 mpn_lshift (my + sy - sx, mx, sx, cnt); 78 MPN_COPY (my + sy - sx, mx, sx); 79 MPN_ZERO(my, sy - sx);
|
| get_f.c | 35 mp_size_t sx, sy; local 84 sy = MPFR_LIMB_SIZE (y); 97 MPFR_ASSERTN (sx >= sy); 98 ds = sx - sy; 103 out = mpn_rshift (xp + ds, MPFR_MANT(y), sy, sh); 109 MPN_COPY (xp + ds, MPFR_MANT (y), sy);
|
| /src/sys/arch/amiga/dev/ |
| ite_cv.c | 228 cv_clear(struct ite_softc *ip, int sy, int sx, int h, int w) 239 (((sy * ip->cols) + sx) << 2)); 246 dst = &console_buffer[(sy * ip->cols) + sx]; 253 cv_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir) 260 ((volatile char*)ip->grf->g_fbkva + (cv_rowc[sy] << 2)); 266 len = cv_rowc[(ip->bottom_margin + 1 - sy)]; 267 src = &console_buffer[cv_rowc[sy]]; 269 if (count > sy) { /* boundary checks */ 272 len -= cv_rowc[(count - sy)]; 273 src += cv_rowc[(count - sy)]; [all...] |
| ite_cv3d.c | 228 cv3d_clear(struct ite_softc *ip, int sy, int sx, int h, int w) 239 (((sy * ip->cols) + sx) << 2)); 246 dst = &console_buffer[(sy * ip->cols) + sx]; 253 cv3d_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir) 260 ((volatile char*)ip->grf->g_fbkva + (cv3d_rowc[sy] << 2)); 266 len = cv3d_rowc[(ip->bottom_margin + 1 - sy)]; 267 src = &console_buffer[cv3d_rowc[sy]]; 269 if (count > sy) { /* boundary checks */ 272 len -= cv3d_rowc[(count - sy)]; 273 src += cv3d_rowc[(count - sy)]; [all...] |
| ite_rh.c | 207 rh_clear(struct ite_softc *ip, int sy, int sx, int h, int w) 209 RZ3AlphaErase (ip->grf, sx, sy, w, h); 218 rh_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir) 228 screen_up(ip, sy - count, ip->bottom_margin, count); 230 memcpy(fb + (sy - count) * ip->cols, fb + sy * ip->cols, 231 4 * (ip->bottom_margin - sy + 1) * ip->cols); 236 screen_down(ip, sy, ip->bottom_margin, count); 238 memcpy(fb + (sy + count) * ip->cols, fb + sy * ip->cols [all...] |
| /src/external/cddl/dtracetoolkit/dist/Bin/ |
| vmstat.d | 25 * sy system calls number 66 sy = 0; in = 0; cs = 0; 79 "in", "sy", "cs"); 93 syscall:::entry { sy++; } 132 in, sy, cs); 136 sy = 0; in = 0; cs = 0;
|
| /src/external/cddl/dtracetoolkit/dist/Mem/ |
| vmstat.d | 25 * sy system calls number 66 sy = 0; in = 0; cs = 0; 79 "in", "sy", "cs"); 93 syscall:::entry { sy++; } 132 in, sy, cs); 136 sy = 0; in = 0; cs = 0;
|
| /src/sys/arch/aarch64/include/ |
| asm.h | 30 eret; dsb sy; isb
|