fb_be_math        229 drivers/video/fbdev/core/cfbimgblt.c 		tab = fb_be_math(p) ? cfb_tab8_be : cfb_tab8_le;
fb_be_math        232 drivers/video/fbdev/core/cfbimgblt.c 		tab = fb_be_math(p) ? cfb_tab16_be : cfb_tab16_le;
fb_be_math       1496 drivers/video/fbdev/core/fbmem.c 	if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
fb_be_math       1500 drivers/video/fbdev/core/fbmem.c 	} else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
fb_be_math        199 drivers/video/fbdev/core/sysimgblt.c 		tab = fb_be_math(p) ? cfb_tab8_be : cfb_tab8_le;
fb_be_math        202 drivers/video/fbdev/core/sysimgblt.c 		tab = fb_be_math(p) ? cfb_tab16_be : cfb_tab16_le;
fb_be_math        579 include/linux/fb.h #define FB_LEFT_POS(p, bpp)          (fb_be_math(p) ? (32 - (bpp)) : 0)
fb_be_math        580 include/linux/fb.h #define FB_SHIFT_HIGH(p, val, bits)  (fb_be_math(p) ? (val) >> (bits) : \
fb_be_math        582 include/linux/fb.h #define FB_SHIFT_LOW(p, val, bits)   (fb_be_math(p) ? (val) << (bits) : \