H A D | vt_vga.c | 395 unsigned int src_x, unsigned int x_count, unsigned int dst_x, in vga_compute_shifted_pattern() 409 << (8 - x_count - dst_x); in vga_compute_shifted_pattern() 415 if (dst_x >= src_x) in vga_compute_shifted_pattern() 416 *pattern >>= (dst_x - src_x % 8); in vga_compute_shifted_pattern() 418 *pattern <<= (src_x % 8 - dst_x); in vga_compute_shifted_pattern() 421 if (dst_x >= src_x % 8) { in vga_compute_shifted_pattern() 423 src[n] << (8 - dst_x - src_x % 8) | in vga_compute_shifted_pattern() 424 src[n + 1] >> (dst_x - src_x % 8); in vga_compute_shifted_pattern() 427 src[n] << (src_x % 8 - dst_x) | in vga_compute_shifted_pattern() 428 src[n + 1] >> (8 - src_x % 8 - dst_x); in vga_compute_shifted_pattern() 393 vga_compute_shifted_pattern(const uint8_t * src,unsigned int bytes,unsigned int src_x,unsigned int x_count,unsigned int dst_x,uint8_t * pattern,uint8_t * mask) vga_compute_shifted_pattern() argument 434 vga_copy_bitmap_portion(uint8_t * pattern_2colors,uint8_t * pattern_ncolors,const uint8_t * src,const uint8_t * src_mask,unsigned int src_width,unsigned int src_x,unsigned int dst_x,unsigned int x_count,unsigned int src_y,unsigned int dst_y,unsigned int y_count,term_color_t fg,term_color_t bg,int overwrite) vga_copy_bitmap_portion() argument 728 unsigned int dst_x, src_y, dst_y, y_count; vga_bitblt_one_text_pixels_block() local 964 unsigned int x1, y1, x2, y2, i, j, src_x, dst_x, x_count; vga_bitblt_bitmap() local [all...] |