Lines Matching refs:destination

492 	uint8_t *destination;  in gfxfb_blt_fill()  local
524 destination = gfx_get_fb_address(); in gfxfb_blt_fill()
532 gfx_mem_wr1(destination, size, off, in gfxfb_blt_fill()
537 gfx_mem_wr2(destination, size, off, data); in gfxfb_blt_fill()
540 gfx_mem_wr1(destination, size, off, in gfxfb_blt_fill()
542 gfx_mem_wr1(destination, size, off + 1, in gfxfb_blt_fill()
544 gfx_mem_wr1(destination, size, off + 2, in gfxfb_blt_fill()
548 gfx_mem_wr4(destination, size, off, data); in gfxfb_blt_fill()
573 uint8_t *source, *destination, *sb; in gfxfb_blt_video_to_buffer() local
617 destination = (uint8_t *)BltBuffer + dy * Delta + in gfxfb_blt_video_to_buffer()
621 bcopy(source, destination, copybytes); in gfxfb_blt_video_to_buffer()
626 p = (void *)(destination + x * sizeof (*p)); in gfxfb_blt_video_to_buffer()
675 uint8_t *source, *destination; in gfxfb_blt_buffer_to_video() local
718 destination = gfx_get_fb_address() + off; in gfxfb_blt_buffer_to_video()
723 bcopy(source, destination, copybytes); in gfxfb_blt_buffer_to_video()
742 gfx_mem_wr1(destination, copybytes, in gfxfb_blt_buffer_to_video()
747 gfx_mem_wr2(destination, copybytes, in gfxfb_blt_buffer_to_video()
751 gfx_mem_wr1(destination, copybytes, in gfxfb_blt_buffer_to_video()
753 gfx_mem_wr1(destination, copybytes, in gfxfb_blt_buffer_to_video()
755 gfx_mem_wr1(destination, copybytes, in gfxfb_blt_buffer_to_video()
759 gfx_mem_wr4(destination, copybytes, in gfxfb_blt_buffer_to_video()
779 uint8_t *source, *destination; in gfxfb_blt_video_to_video() local
807 destination = gfx_get_fb_address() + off; in gfxfb_blt_video_to_video()
812 if ((uintptr_t)destination > (uintptr_t)source) { in gfxfb_blt_video_to_video()
814 destination += Height * pitch; in gfxfb_blt_video_to_video()
819 bcopy(source, destination, copybytes); in gfxfb_blt_video_to_video()
821 destination += pitch; in gfxfb_blt_video_to_video()
983 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *source, *destination; in gfx_fb_cons_copy() local
985 struct paletteentry *source, *destination; in gfx_fb_cons_copy()
1044 destination = &shadow_fb[dy * pitch + dx]; in gfx_fb_cons_copy()
1046 bcopy(source, destination, bytes); in gfx_fb_cons_copy()
1047 (void) gfxfb_blt(destination, GfxFbBltBufferToVideo, in gfx_fb_cons_copy()