Home
last modified time | relevance | path

Searched refs:shift_low (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/drivers/video/fbdev/core/
Dbitblit.c116 u32 shift_low = 0, mod = vc->vc_font.width % 8; in bit_putcs_unaligned() local
132 shift_low, mod); in bit_putcs_unaligned()
133 shift_low += mod; in bit_putcs_unaligned()
134 dst += (shift_low >= 8) ? s_pitch : s_pitch - 1; in bit_putcs_unaligned()
135 shift_low &= 7; in bit_putcs_unaligned()
136 shift_high = 8 - shift_low; in bit_putcs_unaligned()
Dfbcon_ud.c125 u32 shift_low = 0, mod = vc->vc_font.width % 8; in ud_putcs_unaligned() local
140 shift_low, mod); in ud_putcs_unaligned()
141 shift_low += mod; in ud_putcs_unaligned()
142 dst += (shift_low >= 8) ? s_pitch : s_pitch - 1; in ud_putcs_unaligned()
143 shift_low &= 7; in ud_putcs_unaligned()
144 shift_high = 8 - shift_low; in ud_putcs_unaligned()
Dfbmem.c124 u32 shift_high, u32 shift_low, u32 mod) in fb_pad_unaligned_buffer() argument
133 tmp |= *src >> shift_low; in fb_pad_unaligned_buffer()
141 tmp |= *src >> shift_low; in fb_pad_unaligned_buffer()
/linux-6.1.9/include/linux/
Dfb.h622 u32 height, u32 shift_high, u32 shift_low, u32 mod);