• Home
  • Raw
  • Download

Lines Matching refs:height

626 	u32 fgcolor, bgcolor, dx, dy, width, height, vxres, vyres, pixelmask;  local
638 height = image->height;
652 if (dy + height > vyres)
653 height = vyres - dy;
712 for (i = 0; i < height; ++i) {
742 for (i = 0; i < height; ++i) {
765 for (i = 0; i < height; ++i) {
792 for (i = 0; i < height; ++i) {
814 for (i = 0; i < height; ++i) {
839 u32 color, dx, dy, width, height, vxres, vyres; local
848 height = image->height;
858 if (dy + height > vyres)
859 height = vyres - dy;
868 for (i = 0; i < height; i++) {
927 u32 dx, dy, width, height, vxres, vyres, color; local
935 height = rect->height;
943 if (dx > vxres || dy > vyres || !width || !height)
947 if (dy + height > vyres)
948 height = vyres - dy;
996 width *= height, height = 1;
1009 for (i = 0; i < height; ++i) {
1021 for (i = 0; i < height; ++i) {
1054 u32 height, u32 width) argument
1065 n64 = (height * width) / 64;
1068 spos = (sy + height) * width;
1069 dpos = (dy + height) * width;
1099 u32 height, u32 width) argument
1113 n16 = (height * width) / 16;
1116 src = tga_fb + (sy + height) * width * 4;
1117 dst = tga_fb + (dy + height) * width * 4;
1148 u32 height, u32 width, u32 line_length) argument
1161 dy += height - 1;
1162 sy += height - 1;
1214 && (height == 1 || line_length % 64 == 0)) {
1243 for (i = 0; i < height; ++i) {
1309 u32 height, u32 width, u32 line_length, argument
1322 dy += height - 1;
1323 sy += height - 1;
1370 for (i = 0; i < height; ++i) {
1413 unsigned long dx, dy, width, height, sx, sy, vxres, vyres; local
1419 height = area->height;
1433 if (dy + height > vyres)
1434 height = vyres - dy;
1437 if (sx + width > vxres || sy + height > vyres)
1445 copyarea_line_8bpp(info, dy, sy, height, width);
1447 copyarea_line_32bpp(info, dy, sy, height, width);
1459 copyarea_backward_8bpp(info, dx, dy, sx, sy, height,
1462 copyarea_foreward_8bpp(info, dx, dy, sx, sy, height,