Lines Matching refs:xmin
163 int32_t xmax, xmin;
1229 if (tile_x && s->tile_attr.xSize + (int64_t)FFMAX(s->xmin, 0) >= INT_MAX / tile_x )
1238 s->xmin + col < s->xmin || s->xmin + col > s->xmax)
1284 window_xmin = FFMIN(avctx->width, FFMAX(0, s->xmin + col));
1285 window_xmax = FFMIN(avctx->width, FFMAX(0, s->xmin + col + td->xsize));
1299 window_xoffset = FFMAX(0, s->xmin);
1359 data_xoffset = FFABS(FFMIN(0, s->xmin + col)) * (s->pixel_type == EXR_HALF ? 2 : 4);
1394 // Zero out the start if xmin is not 0
1464 // Zero out the start if xmin is not 0
1560 s->xmin = ~0;
1798 int xmin, ymin, xmax, ymax;
1804 xmin = bytestream2_get_le32(gb);
1809 if (xmin > xmax || ymin > ymax ||
1811 (unsigned)xmax - xmin >= INT_MAX ||
1816 s->xmin = xmin;
1820 s->xdelta = (s->xmax - s->xmin) + 1;
2129 /* Verify the xmin, xmax, ymin and ymax before setting the actual image size.
2131 if (s->xmin > s->xmax || s->ymin > s->ymax ||