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

/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_fb_helper.c283 uint16_t *r_base, *g_base, *b_base;
286 r_base = crtc->gamma_store;
287 g_base = r_base + crtc->gamma_size;
291 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
296 uint16_t *r_base, *g_base, *b_base;
298 r_base = crtc->gamma_store;
299 g_base = r_base + crtc->gamma_size;
302 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
H A Ddrm_crtc.c3110 void *r_base, *g_base, *b_base; local
3132 r_base = crtc->gamma_store;
3133 if (copyin((void *)(uintptr_t)crtc_lut->red, r_base, size)) {
3138 g_base = (char *)r_base + size;
3150 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
3164 void *r_base, *g_base, *b_base; local
3186 r_base = crtc->gamma_store;
3187 if (copyout(r_base, (void *)(uintptr_t)crtc_lut->red, size)) {
3192 g_base = (char *)r_base + size;

Completed in 105 milliseconds