Lines Matching defs:width
189 static inline void draw_rect(s16 x, s16 y, u16 width, u16 height,
195 aty_st_le32(DST_HEIGHT_WIDTH, (width << 16) | height, par);
203 u32 sx = area->sx, dx = area->dx, width = area->width, rotation = 0;
207 if (!area->width || !area->height)
219 width *= 3;
229 dx += width - 1;
230 sx += width - 1;
242 aty_st_le32(SRC_HEIGHT1_WIDTH1, (width << 16) | area->height, par);
244 draw_rect(dx, dy, width, area->height, par);
250 u32 color, dx = rect->dx, width = rect->width, rotation = 0;
254 if (!rect->width || !rect->height)
271 width *= 3;
284 draw_rect(dx, rect->dy, width, rect->height, par);
290 u32 src_bytes, dx = image->dx, dy = image->dy, width = image->width;
295 if (!image->width || !image->height)
340 width *= 3;
351 if (image->depth == 1 && M64_HAS(HW_TRIPLE) && image->width % 8 == 0)
383 draw_rect(dx, dy, width, image->height, par);
384 src_bytes = (((image->width * image->depth) + 7) / 8) * image->height;
388 int inbit, outbit, mult24, byte_id_in_dword, width;
392 for (width = image->width, inbit = 7, mult24 = 0; src_bytes; ) {
403 width--;
407 if (inbit < 0 || width == 0) {
412 if (width == 0) {
413 width = image->width;