Lines Matching refs:buffer

126 	struct efi_gop_pixel *buffer = __builtin_assume_aligned(bufferp, 4);  in gop_blt_int()  local
209 pix = *buffer; in gop_blt_int()
212 pix = buffer[slineoff + j + sx]; in gop_blt_int()
231 buffer[dlineoff + j + dx] = pix; in gop_blt_int()
287 struct efi_gop_pixel *buffer, in gop_blt_video_fill() argument
294 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_FILL, sx, sy, dx, in gop_blt_video_fill()
299 struct efi_gop_pixel *buffer, in gop_blt_buf_to_vid16() argument
305 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx, in gop_blt_buf_to_vid16()
310 struct efi_gop_pixel *buffer, in gop_blt_buf_to_vid30() argument
316 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx, in gop_blt_buf_to_vid30()
321 struct efi_gop_pixel *buffer, in gop_blt_buf_to_vid32() argument
327 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx, in gop_blt_buf_to_vid32()
332 struct efi_gop_pixel *buffer, in gop_blt_vid_to_vid() argument
339 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_VIDEO, sx, sy, dx, in gop_blt_vid_to_vid()
344 struct efi_gop_pixel *buffer, in gop_blt_vid_to_buf() argument
351 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_BLT_BUFFER, sx, sy, in gop_blt_vid_to_buf()
370 struct efi_gop_pixel buffer = {0, 0, 0, 0}; in gop_set_mode() local
386 ret = gop_blt_video_fill(this, &buffer, EFI_BLT_VIDEO_FILL, 0, 0, 0, 0, in gop_set_mode()
412 struct efi_gop_pixel *buffer, in gop_blt() argument
422 buffer, operation, sx, sy, dx, dy, width, height, delta); in gop_blt()
429 ret = gop_blt_video_fill(this, buffer, operation, sx, sy, dx, in gop_blt()
435 ret = gop_blt_buf_to_vid32(this, buffer, operation, sx, in gop_blt()
439 ret = gop_blt_buf_to_vid30(this, buffer, operation, sx, in gop_blt()
443 ret = gop_blt_buf_to_vid16(this, buffer, operation, sx, in gop_blt()
448 ret = gop_blt_vid_to_vid(this, buffer, operation, sx, sy, dx, in gop_blt()
452 ret = gop_blt_vid_to_buf(this, buffer, operation, sx, sy, dx, in gop_blt()