Lines Matching refs:offset
136 let mut offset; in bit_put_string() localVariable
158 offset = char_offset * byte_width; in bit_put_string()
162 image.data[offset..offset + byte_width] in bit_put_string()
165 offset += image_line_byte; in bit_put_string()
438 let offset = vc_data.cols * (bottom - count); in con_scroll() localVariable
440 vc_data.screen_buf[offset..(offset + (vc_data.cols * count))].iter_mut() in con_scroll()
459 let mut offset = start; in con_scroll() localVariable
462 while offset < end { in con_scroll()
463 let c = data[offset]; in con_scroll()
469 let count = offset - start; in con_scroll()
472 &data[start..offset], in con_scroll()
477 start = offset; in con_scroll()
481 offset += 1; in con_scroll()
485 &data[start..offset], in con_scroll()
486 offset - start, in con_scroll()
494 let offset = vc_data.cols * (bottom - count); in con_scroll() localVariable
496 vc_data.screen_buf[offset..(offset + (vc_data.cols * count))].iter_mut() in con_scroll()
529 let offset = vc_data.cols * count; in con_scroll() localVariable
530 for i in vc_data.screen_buf[start..(start + offset)].iter_mut() { in con_scroll()
549 let offset = vc_data.cols * top; in con_scroll() localVariable
551 vc_data.screen_buf[offset..(offset + (vc_data.cols * count))].iter_mut() in con_scroll()