Searched refs:r_base (Results 1 - 2 of 2) sorted by relevance

/solaris-x11-s11/open-src/kernel/drm/src/
H A Ddrm_fb_helper.c131 uint16_t *r_base, *g_base, *b_base; local
137 r_base = crtc->gamma_store;
138 g_base = r_base + crtc->gamma_size;
142 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
147 uint16_t *r_base, *g_base, *b_base; local
152 r_base = crtc->gamma_store;
153 g_base = r_base + crtc->gamma_size;
156 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
H A Ddrm_crtc.c3360 void *r_base, *g_base, *b_base; local
3387 r_base = crtc->gamma_store;
3388 if (DRM_COPY_FROM_USER(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
3393 g_base = (void *)((uintptr_t)r_base + size);
3405 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
3419 void *r_base, *g_base, *b_base; local
3441 r_base = crtc->gamma_store;
3442 if (DRM_COPY_TO_USER((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
3447 g_base =(void *)((long)r_base + size);

Completed in 23 milliseconds