HomeSort by: relevance | last modified time | path
    Searched defs:xoff (Results 1 - 21 of 21) sorted by relevancy

  /src/external/bsd/tmux/dist/
cmd-rotate-window.c 53 u_int sx, sy, xoff, yoff; local
63 xoff = wp->xoff; yoff = wp->yoff;
71 wp->xoff = wp2->xoff; wp->yoff = wp2->yoff;
77 wp->xoff = xoff; wp->yoff = yoff;
88 xoff = wp->xoff; yoff = wp->yoff;
96 wp->xoff = wp2->xoff; wp->yoff = wp2->yoff
    [all...]
cmd-swap-pane.c 54 u_int sx, sy, xoff, yoff; local
110 xoff = src_wp->xoff; yoff = src_wp->yoff;
111 src_wp->xoff = dst_wp->xoff; src_wp->yoff = dst_wp->yoff;
113 dst_wp->xoff = xoff; dst_wp->yoff = yoff;
layout-custom.c 87 lc->sx, lc->sy, lc->xoff, lc->yoff, lc->wp->id);
90 lc->sx, lc->sy, lc->xoff, lc->yoff);
287 u_int sx, sy, xoff, yoff; local
292 if (sscanf(*layout, "%ux%u,%u,%u", &sx, &sy, &xoff, &yoff) != 4)
324 lc->xoff = xoff;
cmd-display-panes.c 68 u_int pane, idx, px, py, i, j, xoff, yoff, sx, sy; local
73 if (wp->xoff + wp->sx <= ctx->ox ||
74 wp->xoff >= ctx->ox + ctx->sx ||
79 if (wp->xoff >= ctx->ox && wp->xoff + wp->sx <= ctx->ox + ctx->sx) {
81 xoff = wp->xoff - ctx->ox;
83 } else if (wp->xoff < ctx->ox &&
84 wp->xoff + wp->sx > ctx->ox + ctx->sx) {
86 xoff = 0
    [all...]
layout.c 64 lc->xoff = UINT_MAX;
116 " ", lc, type, lc->parent, lc->wp, lc->xoff, lc->yoff, lc->sx,
135 if (x >= lcchild->xoff && x < lcchild->xoff + lcchild->sx &&
148 if (x < lcchild->xoff && x >= last->xoff + last->sx)
166 layout_set_size(struct layout_cell *lc, u_int sx, u_int sy, u_int xoff,
172 lc->xoff = xoff;
206 u_int xoff, yoff local
913 u_int sx, sy, xoff, yoff, size1, size2, minimum; local
    [all...]
screen-redraw.c 112 if (direction == 0 && wp->xoff == 0)
125 u_int ex = wp->xoff + wp->sx, ey = wp->yoff + wp->sy;
136 if (px >= wp->xoff && px < ex && py >= wp->yoff && py < ey)
158 if (wp->xoff - sb_w == 0 && px == wp->sx + sb_w)
161 if (wp->xoff - sb_w != 0) {
162 if (px == wp->xoff - sb_w - 1 &&
165 if (px == wp->xoff + wp->sx + sb_w - 1)
169 if (wp->xoff == 0 && px == wp->sx + sb_w)
172 if (wp->xoff != 0) {
173 if (px == wp->xoff - 1 &
519 u_int i, x, width, xoff, yoff, size; local
977 int xoff = wp->xoff, ox = ctx->ox; local
1029 int sx = ctx->sx, sy = ctx->sy, xoff = wp->xoff; local
    [all...]
tty.c 85 ((ctx)->xoff == 0 && (ctx)->sx >= (tty)->sx)
995 cx = wp->xoff + wp->screen->cx;
1114 u_int xoff = ctx->rxoff + px, yoff = ctx->ryoff + py; local
1119 if (xoff + nx <= ctx->wox || xoff >= ctx->wox + ctx->wsx ||
1130 u_int xoff = ctx->rxoff + px; local
1136 if (xoff >= ctx->wox && xoff + nx <= ctx->wox + ctx->wsx) {
1139 *x = ctx->xoff + px - ctx->wox;
1141 } else if (xoff < ctx->wox && xoff + nx > ctx->wox + ctx->wsx)
1235 u_int xoff = ctx->rxoff + px, yoff = ctx->ryoff + py; local
    [all...]
window.c 74 u_int *xoff, u_int *yoff, u_int *sx, u_int *sy);
596 u_int xoff, yoff, sx, sy; local
601 window_pane_full_size_offset(wp, &xoff, &yoff, &sx, &sy);
602 if (x < xoff || x > xoff + sx)
1351 window_pane_full_size_offset(struct window_pane *wp, u_int *xoff, u_int *yoff,
1366 *xoff = wp->xoff - sb_w;
1369 *xoff = wp->xoff;
1387 u_int xoff, yoff, sx, sy; local
1448 u_int xoff, yoff, sx, sy; local
1509 u_int xoff, yoff, sx, sy; local
1561 u_int xoff, yoff, sx, sy; local
    [all...]
tmux.h 1176 u_int xoff; member in struct:window_pane
1379 u_int xoff; member in struct:layout_cell
1659 u_int xoff; member in struct:tty_ctx
  /src/games/warp/
init.c 46 int yoff = 0, xoff = 0, ypred, xpred; local
196 xoff = rand_mod(XSIZE);
217 xoff = rand_mod(XSIZE); /* how much to shift x */
240 xoff = rand_mod(XSIZE);
251 * 20.0) + xoff; /* pick from -20..20, clumped */
256 x = xpred + xoff;
261 x = -xpred + xoff;
  /src/sys/dev/splash/
splash.c 180 int xoff, yoff, width, height, comp; local
208 xoff = (si->si_width - width) / 2;
211 xoff = yoff = 0;
216 splash_render8(si, data, xoff, yoff, width, height, flg);
221 splash_render16(si, data, xoff, yoff, width, height, flg);
226 splash_render32(si, data, xoff, yoff, width, height, flg);
244 splash_render8(struct splash_info *si, const char *data, int xoff, int yoff,
261 fb += xoff + yoff * si->si_stride;
293 rp = si->si_bits + xoff + (yoff * si->si_width);
294 hrp = si->si_hwbits + xoff + (yoff * si->si_width)
    [all...]
  /src/sys/arch/newsmips/dev/
fb.c 286 int width, height, stride, xoff, yoff, cols, rows; local
334 xoff = ((width - cols * ri->ri_font->fontwidth) / 2 / 8) & ~3;
338 ri->ri_xorigin = xoff;
340 ri->ri_bits = dc->dc_fbbase + xoff + ri->ri_stride * yoff;
  /src/sys/dev/ic/
igsfb.c 862 int x, xoff, y, yoff; local
864 xoff = 0;
867 xoff = -x;
883 igs_ext_write(t, h, IGS_EXT_SPRITE_HPRESET, xoff & 0x3f);
  /src/sys/arch/amiga/dev/
grf_cv3d.c 1700 short xoff, yoff; local
1714 xoff = ((-x) & 0xFE);
1717 xoff = 0;
1731 WCrt(ba, CRT_ID_HWGC_DSTART_X, xoff);
grf_cv.c 1837 short xoff, yoff; local
1851 xoff = ((-x) & 0xFE);
1854 xoff = 0;
1868 WCrt(ba, CRT_ID_HWGC_DSTART_X, xoff);
  /src/sys/arch/arm/sunxi/
sunxi_debe.c 408 u_int yoff, xoff; local
410 xoff = yoff = 0;
414 xoff -= xx;
435 __SHIFTIN(xoff, SUNXI_DEBE_HWCFBCTL_XCOOROFF));
  /src/sys/dev/hpc/
hpcfb.c 939 int xoff, yoff; local
956 xoff = col * ri->ri_font->fontwidth;
961 on, xoff, yoff, curwidth, curheight);
1023 int xoff; local
1048 xoff = col * ri->ri_font->fontwidth;
1053 xoff, yoff, font, fclr, uclr, uc, attr);
1174 int xoff, yoff; local
1194 xoff = startcol * ri->ri_font->fontwidth;
1199 xoff, yoff, height, width, attr);
  /src/sys/dev/rasops/
rasops.c 485 uint32_t xoff, yoff; local
487 xoff = ((ri->ri_width * bpp >> 3) - ri->ri_emustride) >> 1;
492 xoff &= ~3;
497 xoff -= xoff % 12;
503 ri->ri_bits += xoff;
506 ri->ri_hwbits += xoff;
  /src/external/gpl3/gcc/dist/gcc/
cselib.cc 142 rtx xoff = NULL; local
143 if (autoinc_split (x, &xoff, memmode) == v->val_rtx && xoff == NULL_RTX)
1012 rtx xoff = NULL;
1013 rtx xr = autoinc_split (x, &xoff, memmode);
1014 if ((xr == y || xr == e->val_rtx) && xoff == NULL_RTX)
1044 rtx xoff = NULL, yoff = NULL;
1046 x = autoinc_split (x, &xoff, memmode);
1052 if (!xoff != !yoff)
1055 if (xoff && !rtx_equal_for_cselib_1 (xoff, yoff, memmode, depth)
1011 rtx xoff = NULL; local
1043 rtx xoff = NULL, yoff = NULL; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
cselib.cc 138 rtx xoff = NULL; local
139 if (autoinc_split (x, &xoff, memmode) == v->val_rtx && xoff == NULL_RTX)
993 rtx xoff = NULL;
994 rtx xr = autoinc_split (x, &xoff, memmode);
995 if ((xr == y || xr == e->val_rtx) && xoff == NULL_RTX)
1025 rtx xoff = NULL, yoff = NULL;
1027 x = autoinc_split (x, &xoff, memmode);
1033 if (!xoff != !yoff)
1036 if (xoff && !rtx_equal_for_cselib_1 (xoff, yoff, memmode, depth)
992 rtx xoff = NULL; local
1024 rtx xoff = NULL, yoff = NULL; local
    [all...]
  /src/sys/dev/pci/
radeonfb.c 4095 int i, x, y, xoff, yoff, crtcoff, lock; local
4153 xoff = yoff = 0;
4170 xoff = -x;
4185 PUT32(sc, hvoff, (xoff << 16) | (yoff) | lock);

Completed in 37 milliseconds