Home | History | Annotate | Download | only in dist

Lines Matching defs:ry

1128     u_int nx, u_int *i, u_int *x, u_int *rx, u_int *ry)
1134 *ry = ctx->yoff + py - ctx->woy;
1221 u_int i, x, rx, ry;
1225 if (tty_clamp_line(tty, ctx, px, py, nx, &i, &x, &rx, &ry))
1226 tty_clear_line(tty, &ctx->defaults, ry, x, rx, bg);
1233 u_int *ry)
1268 *ry = ny;
1273 *ry = ctx->wsy;
1278 *ry = ny - *j;
1283 *ry = ctx->wsy - *y;
1285 if (*ry > ny)
1286 fatalx("%s: y too big, %u > %u", __func__, *ry, ny);
1368 u_int i, j, x, y, rx, ry;
1370 if (tty_clamp_area(tty, ctx, px, py, nx, ny, &i, &j, &x, &y, &rx, &ry))
1371 tty_clear_area(tty, &ctx->defaults, y, ry, x, rx, bg);
1378 u_int nx = ctx->sx, i, x, rx, ry;
1387 if (tty_clamp_line(tty, ctx, 0, py, nx, &i, &x, &rx, &ry)) {
1388 tty_draw_line(tty, s, i, py, rx, x, ry, &ctx->defaults,
2303 u_int i, j, x, y, rx, ry;
2314 if (!tty_clamp_area(tty, ctx, cx, cy, sx, sy, &i, &j, &x, &y, &rx, &ry))
2316 log_debug("%s: clamping to %u,%u-%u,%u", __func__, i, j, rx, ry);
2322 new = sixel_scale(si, tty->xpixel, tty->ypixel, i, j, rx, ry, 0);