Lines Matching refs:finfo

105 		m->info.yoffset = hnd->offset / m->finfo.line_length;  in fb_post()
147 if (hnd->byte_stride == (int)m->finfo.line_length) in fb_post()
149 memcpy(fb_vaddr, buffer_vaddr, m->finfo.line_length * m->info.yres); in fb_post()
160 m->finfo.line_length); in fb_post()
162 fb_offset += m->finfo.line_length; in fb_post()
199 struct fb_fix_screeninfo finfo; in init_frame_buffer_locked() local
201 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1) in init_frame_buffer_locked()
315 …fd, finfo.id, info.xres, info.yres, info.xres_virtual, info.yres_virtual, info.bits_per_pixel, inf… in init_frame_buffer_locked()
323 if (0 == strncmp(finfo.id, "CLCD FB", 7)) in init_frame_buffer_locked()
327 else if (0 == strncmp(finfo.id, "ARM Mali HDLCD", 14)) in init_frame_buffer_locked()
331 else if (0 == strncmp(finfo.id, "ARM HDLCD Control", 16)) in init_frame_buffer_locked()
340 if (ioctl(fd, FBIOGET_FSCREENINFO, &finfo) == -1) in init_frame_buffer_locked()
345 if (finfo.smem_len <= 0) in init_frame_buffer_locked()
352 module->finfo = finfo; in init_frame_buffer_locked()
361 size_t fbSize = round_up_to_page_size(finfo.line_length * info.yres_virtual); in init_frame_buffer_locked()
461 const size_t framebufferSize = m->finfo.line_length * m->info.yres; in fb_alloc_framebuffer_locked()
462 const size_t alignedFramebufferSize = GRALLOC_ALIGN(m->finfo.line_length, 64) * m->info.yres; in fb_alloc_framebuffer_locked()
474 *byte_stride = GRALLOC_ALIGN(m->finfo.line_length, 64); in fb_alloc_framebuffer_locked()
514 *byte_stride = GRALLOC_ALIGN(m->finfo.line_length, 64); in fb_alloc_framebuffer_locked()
519 *byte_stride = m->finfo.line_length; in fb_alloc_framebuffer_locked()
630 int stride = m->finfo.line_length / (m->info.bits_per_pixel >> 3); in framebuffer_device_open()