Home | History | Annotate | Download | only in dev

Lines Matching defs:fbcm

460 	struct fbcmap *fbcm = data;
464 start = fbcm->index;
465 count = fbcm->count;
469 if ((error = copyout(&cm->r[start], fbcm->red, count)) != 0)
472 if ((error = copyout(&cm->g[start], fbcm->green, count)) != 0)
475 if ((error = copyout(&cm->b[start], fbcm->blue, count)) != 0)
490 struct fbcmap *fbcm = data;
494 start = fbcm->index;
495 count = fbcm->count;
499 if ((error = copyin(fbcm->red, &cm->r[start], count)) != 0)
502 if ((error = copyin(fbcm->green, &cm->g[start], count)) != 0)
505 if ((error = copyin(fbcm->blue, &cm->b[start], count)) != 0)