Searched refs:fb_shifted_pixels_mask_long (Results 1 – 3 of 3) sorted by relevance
/drivers/video/fbdev/core/ |
D | cfbfillrect.c | 43 first = fb_shifted_pixels_mask_long(p, dst_idx, bswapmask); in bitfill_aligned() 44 last = ~fb_shifted_pixels_mask_long(p, (dst_idx+n) % bits, bswapmask); in bitfill_aligned() 156 first = fb_shifted_pixels_mask_long(p, dst_idx, bswapmask); in bitfill_aligned_rev() 157 last = ~fb_shifted_pixels_mask_long(p, (dst_idx+n) % bits, bswapmask); in bitfill_aligned_rev()
|
D | fb_draw.h | 122 static inline unsigned long fb_shifted_pixels_mask_long(struct fb_info *p, in fb_shifted_pixels_mask_long() function 169 #define fb_shifted_pixels_mask_long(p, i, b) FB_SHIFT_HIGH((p), ~0UL, (i)) macro
|
D | cfbcopyarea.c | 63 first = fb_shifted_pixels_mask_long(p, dst_idx, bswapmask); in bitcpy() 64 last = ~fb_shifted_pixels_mask_long(p, (dst_idx+n) % bits, bswapmask); in bitcpy() 236 first = ~fb_shifted_pixels_mask_long(p, (dst_idx + 1) % bits, bswapmask); in bitcpy_rev() 237 last = fb_shifted_pixels_mask_long(p, (bits + dst_idx + 1 - n) % bits, bswapmask); in bitcpy_rev()
|