Home | History | Annotate | Download | only in dist

Lines Matching defs:xoff

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 &&
176 if (px == wp->xoff + wp->sx + sb_w)
190 if ((wp->xoff - sb_w == 0 || px >= wp->xoff - sb_w) &&
198 if ((wp->xoff == 0 || px >= wp->xoff) &&
363 right = wp->xoff + 2 + wp->status_size - 1;
365 if (py == line && px >= wp->xoff + 2 && px <= right)
401 (px >= wp->xoff + wp->sx &&
402 px < wp->xoff + wp->sx + sb_w)) ||
404 (px >= wp->xoff - sb_w &&
405 px < wp->xoff)))
484 px = wp->xoff + 2 + i;
519 u_int i, x, width, xoff, yoff, size;
533 xoff = wp->xoff + 2;
535 if (xoff + size <= ctx->ox ||
536 xoff >= ctx->ox + ctx->sx ||
541 if (xoff >= ctx->ox && xoff + size <= ctx->ox + ctx->sx) {
544 x = xoff - ctx->ox;
546 } else if (xoff < ctx->ox && xoff + size > ctx->ox + ctx->sx) {
551 } else if (xoff < ctx->ox) {
553 i = ctx->ox - xoff;
559 x = xoff - ctx->ox;
806 if (((i == wp->xoff + 1 &&
902 if (wp->xoff + wp->sx <= ctx->ox || wp->xoff >= ctx->ox + ctx->sx)
913 if (wp->xoff >= ctx->ox &&
914 wp->xoff + wp->sx <= ctx->ox + ctx->sx) {
917 x = wp->xoff - ctx->ox;
919 } else if (wp->xoff < ctx->ox &&
920 wp->xoff + wp->sx > ctx->ox + ctx->sx) {
925 } else if (wp->xoff < ctx->ox) {
927 i = ctx->ox - wp->xoff;
933 x = wp->xoff - ctx->ox;
977 int xoff = wp->xoff, ox = ctx->ox;
1000 sb_x = xoff - sb_w - sb_pad - ox;
1002 sb_x = xoff + wp->sx - ox;
1029 int sx = ctx->sx, sy = ctx->sy, xoff = wp->xoff;
1054 if (px < xoff - ox - (int)sb_w - (int)sb_pad ||