Lines Matching refs:width

623 	u32 fgcolor, bgcolor, dx, dy, width, height, vxres, vyres, pixelmask;  local
634 width = image->width;
639 rincr = (width + 7) / 8;
642 if (unlikely(width == 0))
647 if (dx + width > vxres)
648 width = vxres - dx;
695 if (width + shift <= 32) {
702 pixelmask = (2ul << (width - 1)) - 1;
707 bwidth = (width + 7) / 8;
738 bwidth = (width / 8) & -4;
753 pixelmask = (1ul << (width & 31)) - 1;
760 bwidth = ((width & 31) + 7) / 8;
788 bwidth = (width / 8) & -2;
802 pixelmask = ((1ul << (width & 15)) - 1) << shift;
809 bwidth = (width & 15) > 8;
836 u32 color, dx, dy, width, height, vxres, vyres; local
844 width = image->width;
853 if (dx + width > vxres)
854 width = vxres - dx;
866 for (j = 0; j < width; j++) {
924 u32 dx, dy, width, height, vxres, vyres, color; local
931 width = rect->width;
940 if (dx > vxres || dy > vyres || !width || !height)
942 if (dx + width > vxres)
943 width = vxres - dx;
992 if (width == line_length)
993 width *= height, height = 1;
1001 if (width <= 2048) {
1004 data = (width - 1) | align;
1012 unsigned long nwidth = width & -2048;
1016 ldata = ((width & 2047) - 1) | align;
1021 if (j < width)
1051 u32 height, u32 width) argument
1062 n64 = (height * width) / 64;
1065 spos = (sy + height) * width;
1066 dpos = (dy + height) * width;
1077 spos = sy * width;
1078 dpos = dy * 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;
1125 src = tga_fb + sy * width * 4;
1126 dst = tga_fb + dy * width * 4;
1145 u32 height, u32 width, u32 line_length, argument
1157 if ((dx | sx | width) & 7) {
1168 backward = dy == sy && dx > sx && dx < sx + width;
1175 depos += width, sepos += width;
1178 n32 = width / 32;
1179 last_step = width % 32;
1253 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1258 width = area->width;
1271 if (dx + width > vxres)
1272 width = vxres - dx;
1277 if (sx + width > vxres || sy + height > vyres)
1283 if (!(line_length & 63) && width * (bpp >> 3) == line_length) {
1285 copyarea_line_8bpp(info, dy, sy, height, width);
1287 copyarea_line_32bpp(info, dy, sy, height, width);
1298 width, line_length, area);