Lines Matching refs:height
623 u32 fgcolor, bgcolor, dx, dy, width, height, vxres, vyres, pixelmask; local
635 height = image->height;
649 if (dy + height > vyres)
650 height = vyres - dy;
709 for (i = 0; i < height; ++i) {
739 for (i = 0; i < height; ++i) {
762 for (i = 0; i < height; ++i) {
789 for (i = 0; i < height; ++i) {
811 for (i = 0; i < height; ++i) {
836 u32 color, dx, dy, width, height, vxres, vyres; local
845 height = image->height;
855 if (dy + height > vyres)
856 height = vyres - dy;
865 for (i = 0; i < height; i++) {
924 u32 dx, dy, width, height, vxres, vyres, color; local
932 height = rect->height;
940 if (dx > vxres || dy > vyres || !width || !height)
944 if (dy + height > vyres)
945 height = vyres - dy;
993 width *= height, height = 1;
1006 for (i = 0; i < height; ++i) {
1018 for (i = 0; i < height; ++i) {
1051 u32 height, u32 width) argument
1062 n64 = (height * width) / 64;
1065 spos = (sy + height) * width;
1066 dpos = (dy + height) * width;
1096 u32 height, u32 width) argument
1110 n16 = (height * width) / 16;
1113 src = tga_fb + (sy + height) * width * 4;
1114 dst = tga_fb + (dy + height) * width * 4;
1145 u32 height, u32 width, u32 line_length, argument
1164 dy += height - 1;
1165 sy += height - 1;
1202 for (i = 0; i < height; ++i) {
1253 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1259 height = area->height;
1273 if (dy + height > vyres)
1274 height = vyres - dy;
1277 if (sx + width > vxres || sy + height > vyres)
1285 copyarea_line_8bpp(info, dy, sy, height, width);
1287 copyarea_line_32bpp(info, dy, sy, height, width);
1297 copyarea_8bpp(info, dx, dy, sx, sy, height,