Lines Matching refs:width

633 	u32 fgcolor, bgcolor, dx, dy, width, height, vxres, vyres, pixelmask;  local
644 width = image->width;
649 rincr = (width + 7) / 8;
652 if (unlikely(width == 0))
657 if (dx + width > vxres)
658 width = vxres - dx;
705 if (width + shift <= 32) {
712 pixelmask = (2ul << (width - 1)) - 1;
717 bwidth = (width + 7) / 8;
748 bwidth = (width / 8) & -4;
763 pixelmask = (1ul << (width & 31)) - 1;
770 bwidth = ((width & 31) + 7) / 8;
798 bwidth = (width / 8) & -2;
812 pixelmask = ((1ul << (width & 15)) - 1) << shift;
819 bwidth = (width & 15) > 8;
846 u32 color, dx, dy, width, height, vxres, vyres; local
854 width = image->width;
863 if (dx + width > vxres)
864 width = vxres - dx;
875 for (j = 0; j < width; j++) {
933 u32 dx, dy, width, height, vxres, vyres, color; local
940 width = rect->width;
949 if (dx > vxres || dy > vyres || !width || !height)
951 if (dx + width > vxres)
952 width = vxres - dx;
1001 if (width == line_length) {
1002 width *= height;
1012 if (width <= 2048) {
1015 data = (width - 1) | align;
1023 unsigned long nwidth = width & -2048;
1027 ldata = ((width & 2047) - 1) | align;
1032 if (j < width)
1062 u32 height, u32 width) argument
1073 n64 = (height * width) / 64;
1076 spos = (sy + height) * width;
1077 dpos = (dy + height) * width;
1088 spos = sy * width;
1089 dpos = dy * width;
1107 u32 height, u32 width) argument
1121 n16 = (height * width) / 16;
1124 src = tga_fb + (sy + height) * width * 4;
1125 dst = tga_fb + (dy + height) * width * 4;
1136 src = tga_fb + sy * width * 4;
1137 dst = tga_fb + dy * width * 4;
1156 u32 height, u32 width, u32 line_length, argument
1168 if ((dx | sx | width) & 7) {
1179 backward = dy == sy && dx > sx && dx < sx + width;
1186 depos += width;
1187 sepos += width;
1191 n32 = width / 32;
1192 last_step = width % 32;
1266 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1271 width = area->width;
1284 if (dx + width > vxres)
1285 width = vxres - dx;
1290 if (sx + width > vxres || sy + height > vyres)
1296 if (!(line_length & 63) && width * (bpp >> 3) == line_length) {
1298 copyarea_line_8bpp(info, dy, sy, height, width);
1300 copyarea_line_32bpp(info, dy, sy, height, width);
1311 width, line_length, area);