Lines Matching refs:start_offset
50 int i, pos, last, planepos, start_offset, end_offset, offset; in WriteVerticalLine() local
59 start_offset = (x & 0x07); in WriteVerticalLine()
61 i = (width + start_offset) / 8; in WriteVerticalLine()
70 last = 8 - start_offset; in WriteVerticalLine()
90 if (start_offset || end_offset) in WriteVerticalLine()
104 if (start_offset) in WriteVerticalLine()
105 VGLPlane[i][0] |= dst->Bitmap[pos] & ~mask[start_offset]; in WriteVerticalLine()
113 if (start_offset) in WriteVerticalLine()
114 VGLPlane[i][0] |= dst->Bitmap[offset] & ~mask[start_offset]; in WriteVerticalLine()
182 int i, bit, pos, count, planepos, start_offset, end_offset, offset; in ReadVerticalLine() local
189 start_offset = (x & 0x07); in ReadVerticalLine()
191 count = (width + start_offset) / 8; in ReadVerticalLine()
213 start_offset = (x & 0x07); in ReadVerticalLine()
215 count = (width + start_offset) / 8; in ReadVerticalLine()
230 bit = 7 - start_offset; in ReadVerticalLine()