Lines Matching defs:section
601 unsigned short section;
627 section = 0x10 - (x & 0x0F);
628 WRITE_REG16(GP_WIDTH, section);
634 WRITE_REG16(GP_DST_XCOOR, x + section);
636 WRITE_REG16(GP_WIDTH, width - section);
666 unsigned short section, buffer_width, blit_mode;
704 /* Write the registers that do not change for each section. */
724 section = buffer_width;
726 section = width;
733 WRITE_REG16(GP_WIDTH, section);
738 width -= section;
739 x += section;
775 unsigned short bpp_shift, section, cur_x;
838 section = (line_width > buffer_width) ? buffer_width : line_width;
843 WRITE_REG16(GP_WIDTH, section);
852 cur_x += section;
853 line_width -= section;
901 unsigned short section, buffer_width;
930 /* Write the registers that do not change for each section. */
950 section = buffer_width;
952 section = width;
959 WRITE_REG16(GP_WIDTH, section);
965 /* Still positive X direction within the section. */
967 srcx -= section;
968 dstx -= section;
978 dstx += section;
979 srcx += section;
981 width -= section;
1015 unsigned short section, buffer_width;
1085 section = buffer_width;
1087 section = width;
1094 WRITE_REG16(GP_WIDTH, section);
1103 /* Still positive X direction within the section. */
1105 srcx -= section;
1106 dstx -= section;
1116 dstx += section;
1117 srcx += section;
1119 width -= section;
1159 unsigned short section, buffer_width;
1184 /* Write the registers that do not change for each section. */
1193 section = buffer_width;
1195 section = width;
1197 dword_bytes_needed = (section << bpp_shift) & ~3l;
1198 bytes_extra = (section << bpp_shift) & 3l;
1206 WRITE_REG16(GP_WIDTH, section);
1229 width -= section;
1230 srcx += section;
1231 dstx += section;
1271 unsigned short section, buffer_width;
1309 /* Write the registers that do not change for each section. */
1324 section = buffer_width;
1326 section = width;
1328 dword_bytes_needed = (section << bpp_shift) & ~3l;
1329 bytes_extra = (section << bpp_shift) & 3l;
1337 WRITE_REG16(GP_WIDTH, section);
1360 width -= section;
1361 srcx += section;
1362 dstx += section;
1396 unsigned short section, buffer_width;
1435 /* Write the registers that do not change for each section. */
1442 section = buffer_width;
1444 section = width;
1449 dword_bytes_needed = ((section + 7 + (srcx & 7)) >> 3) & ~3l;
1450 bytes_extra = ((section + 7 + (srcx & 7)) >> 3) & 3l;
1458 WRITE_REG16(GP_WIDTH, section);
1481 width -= section;
1482 srcx += section;
1483 dstx += section;