Home
last modified time | relevance | path

Searched refs:g_base (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/drivers/gpu/drm/
Ddrm_color_mgmt.c194 uint16_t *r_base, *g_base, *b_base; in drm_mode_crtc_set_gamma_size() local
207 g_base = r_base + gamma_size; in drm_mode_crtc_set_gamma_size()
208 b_base = g_base + gamma_size; in drm_mode_crtc_set_gamma_size()
211 g_base[i] = i << 8; in drm_mode_crtc_set_gamma_size()
239 void *r_base, *g_base, *b_base; in drm_mode_gamma_set_ioctl() local
271 g_base = r_base + size; in drm_mode_gamma_set_ioctl()
272 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) { in drm_mode_gamma_set_ioctl()
277 b_base = g_base + size; in drm_mode_gamma_set_ioctl()
283 ret = crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, in drm_mode_gamma_set_ioctl()
318 void *r_base, *g_base, *b_base; in drm_mode_gamma_get_ioctl() local
[all …]
Ddrm_fb_helper.c276 uint16_t *r_base, *g_base, *b_base; in drm_fb_helper_restore_lut_atomic() local
282 g_base = r_base + crtc->gamma_size; in drm_fb_helper_restore_lut_atomic()
283 b_base = g_base + crtc->gamma_size; in drm_fb_helper_restore_lut_atomic()
285 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, in drm_fb_helper_restore_lut_atomic()