Searched refs:sy (Results 1 - 25 of 113) sorted by relevance

12345

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/compile/
H A D20000511-1.f1 subroutine saxpy(n,sa,sx,incx,sy,incy)
8 real sx(*),sy(*),sa local in subroutine:saxpy
17 sy(i)= sy(i)+sa*sx(i)
/openbsd-current/usr.bin/tmux/
H A Dstyle.c47 style_set_range_string(struct style *sy, const char *s) argument
49 strlcpy(sy->range_string, s, sizeof sy->range_string);
58 style_parse(struct style *sy, const struct grid_cell *base, const char *in) argument
68 style_copy(&saved, sy);
85 sy->gc.fg = base->fg;
86 sy->gc.bg = base->bg;
87 sy->gc.us = base->us;
88 sy->gc.attr = base->attr;
89 sy
239 style_tostring(struct style *sy) argument
342 struct style *sy; local
374 style_set(struct style *sy, const struct grid_cell *gc) argument
[all...]
H A Dresize.c26 resize_window(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel) argument
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;
114 clients_calculate_size(int type, int current, struct client *c, struct session *s, struct window *w, int (*skip_client)(struct client *, int, int, struct session *, struct window *), u_int *sx, u_int *sy, u_int *xpixel, u_int *ypixel) argument
285 default_window_size(struct client *c, struct session *s, struct window *w, u_int *sx, u_int *sy, u_int *xpixel, u_int *ypixel, int type) argument
362 u_int sx, sy, xpixel = 0, ypixel = 0; local
[all...]
H A Dcmd-resize-window.c56 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...]
H A Dlayout-set.c123 u_int n, sx, sy; local
139 sy = w->sy;
141 sy = (n * (PANE_MINIMUM + 1)) - 1;
142 if (sy < w->sy)
143 sy = w->sy;
146 layout_set_size(lc, sx, sy, 0, 0);
154 lcnew->sy
189 u_int n, mainh, otherh, sx, sy; local
287 u_int n, mainw, otherw, sx, sy; local
385 u_int n, width, height, used, sx, sy; local
[all...]
H A Dlayout-custom.c87 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
287 u_int sx, sy, xoff, yoff; local
[all...]
H A Dscreen.c35 u_int sy; member in struct:screen_sel
75 screen_init(struct screen *s, u_int sx, u_int sy, u_int hlimit) argument
77 s->grid = grid_create(sx, sy, hlimit);
120 grid_clear_lines(s->grid, s->grid->hsize, s->grid->sy, 8);
273 screen_resize_cursor(struct screen *s, u_int sx, u_int sy, int reflow, argument
282 __func__, sx, sy, screen_size_x(s), screen_size_y(s), s->cx, s->cy,
287 if (sy < 1)
288 sy = 1;
296 if (sy != screen_size_y(s))
297 screen_resize_y(s, sy, eat_empt
319 screen_resize(struct screen *s, u_int sx, u_int sy, int reflow) argument
325 screen_resize_y(struct screen *s, u_int sy, int eat_empty, u_int *cy) argument
412 screen_set_selection(struct screen *s, u_int sx, u_int sy, u_int ex, u_int ey, u_int rectangle, int modekeys, struct grid_cell *gc) argument
598 u_int sx, sy; local
623 u_int sx = screen_size_x(s), sy = screen_size_y(s); local
[all...]
H A Dgrid-view.c73 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...]
H A Dcmd-display-panes.c68 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
[all...]
H A Dcmd-rotate-window.c53 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);
H A Dpopup.c57 u_int sy; member in struct:popup_data
124 ttyctx->wsy = c->tty.sy;
181 pd->sy, r->px[i], py, r->nx[i], &or[i]);
208 server_client_overlay_range(pd->px, pd->py, pd->sx, pd->sy, px, py, nx,
223 screen_init(&s, pd->sx, pd->sy, 0);
229 screen_write_fast_copy(&ctx, &pd->s, 0, 0, pd->sx, pd->sy);
230 } else if (pd->sx > 2 && pd->sy > 2) {
231 screen_write_box(&ctx, pd->sx, pd->sy, pd->border_lines,
235 pd->sy - 2);
252 for (i = 0; i < pd->sy;
637 popup_display(int flags, enum box_lines lines, struct cmdq_item *item, u_int px, u_int py, u_int sx, u_int sy, struct environ *env, const char *shellcmd, int argc, char **argv, const char *cwd, const char *title, struct client *c, struct session *s, const char *style, const char *border_style, popup_close_cb cb, void *arg) argument
781 u_int px, py, sx, sy; local
[all...]
H A Dlayout.c62 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, argument
170 lc->sy = sy;
224 yoff += lcchild->sy + 1;
306 window_pane_resize(wp, lc->sx, lc->sy - 1);
308 window_pane_resize(wp, lc->sx, lc->sy);
496 layout_resize(struct window *w, u_int sx, u_int sy) argument
873 u_int sx, sy, xoff, yoff, size1, size2, minimum; local
[all...]
H A Dcmd-new-session.c83 u_int sx, sy, dsx, dsy, count = args_count(args); local
225 dsy = c->tty.sy;
241 sy = c->tty.sy;
242 if (sy > 0 && options_get_number(global_s_options, "status"))
243 sy--;
246 if (sscanf(tmp, "%ux%u", &sx, &sy) != 2) {
248 sy = dsy;
253 sy = dsy;
258 if (sy
[all...]
H A Dcmd-display-menu.c110 u_int line, ox, oy, sx, sy, lines, position; local
120 if (w > tty->sx || h > tty->sy)
163 "%u", tty->sy - lines + line);
171 tty->sy - lines);
186 n = (tty->sy - 1) / 2 + h / 2;
187 if (n >= tty->sy)
188 format_add(ft, "popup_centre_y", "%u", tty->sy - h);
200 if (n + h >= tty->sy) {
202 tty->sy - h);
206 if (n >= tty->sy)
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D921011-1.c5 int th, h, em, nlwm, nlwS, nlw, sy; local
24 if (++sy == th)
25 sy = 0;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020201-1.c16 unsigned short sy; local
24 sy = sx / 6; if (sy != 2) abort ();
25 sy = sx % 6; if (sy != 2) abort ();
/openbsd-current/games/hack/
H A Dhack.mkshop.c87 int sh,sx,sy,i = -1; local
148 sy = doors[sh].y;
151 if(sy == sroom->ly-1) sy++; else
152 if(sy == sroom->hy+1) sy--; else {
173 if(!(shk = makemon(PM_SHK,sx,sy))) return;
181 ESHK->shk.y = sy;
189 for(sy = sroom->ly; sy <
211 int sh,sx,sy,i; local
280 int sx,sy,i,eelct = 0; local
306 nexttodoor(int sx, int sy) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils/gas/config/
H A Dobj-ieee.h28 asymbol sy; member in struct:__anon4349
33 #define S_GET_NAME(s) (((s)->sy_symbol.sy.name))
H A Dobj-ieee.c218 s = &(from->fx_addsy->sy_symbol.sy);
251 *ptrs = &(from->fx_addsy->sy_symbol.sy);
293 ptr->sy_symbol.sy.section =
296 if (ptr->sy_symbol.sy.flags == 0)
297 ptr->sy_symbol.sy.flags = BSF_LOCAL;
304 ptr->sy_symbol.sy.flags |= BSF_ABSOLUTE;
305 ptr->sy_symbol.sy.section = 0;
308 ptr->sy_symbol.sy.flags = BSF_UNDEFINED;
309 ptr->sy_symbol.sy.section = 0;
315 ptr->sy_symbol.sy
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dobj-ieee.h26 asymbol sy; member in struct:__anon5295
31 #define S_GET_NAME(s) (((s)->sy_symbol.sy.name))
/openbsd-current/regress/lib/libc/cephes/
H A Ddrand.c70 static int sy = 10000; variable
94 /* sy = sy * 172 mod 30307 */
95 r = sy/176;
96 s = sy - 176 * r;
97 sy = 172 * s - 35 * r;
98 if( sy < 0 )
99 sy += 30307;
107 /* The results are in static sx, sy, sz. */
132 unkans.d = sx/30269.0 + sy/30307.
[all...]
/openbsd-current/sys/arch/arm/arm/
H A Dcpufunc_asm_armv7.S27 dsb sy
28 isb sy
46 dsb sy
47 isb sy
52 dsb sy
53 isb sy
63 dsb sy
64 isb sy
70 dsb sy
71 isb sy
[all...]
/openbsd-current/sys/arch/arm/armv7/
H A Dbus_space_asm_armv7.S50 dsb sy
55 dsb sy
60 dsb sy
70 dsb sy
75 dsb sy
80 dsb sy
98 dsb sy
113 dsb sy
128 dsb sy
147 dsb sy
[all...]
/openbsd-current/lib/libcurses/base/
H A Dlib_overlay.c171 int sx, sy, dx, dy; local
176 for (dy = dminrow, sy = sminrow;
178 sy++, dy++) {
181 if (dy < 0 || sy < 0)
194 if ((CharOf(src->_line[sy].text[sx]) != L(' ')) &&
196 src->_line[sy].text[sx]))) {
198 src->_line[sy].text[sx];
200 ((AttrOf(src->_line[sy].text[sx]) &
206 src->_line[sy].text[sx])) {
208 src->_line[sy]
[all...]
/openbsd-current/sys/arch/armv7/armv7/
H A Darmv7_start.S110 dsb sy

Completed in 314 milliseconds

12345