Searched refs:bf (Results 26 - 50 of 53) sorted by relevance

123

/drivers/video/
H A Dwm8505fb.c168 static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf) argument
171 chan >>= 16 - bf->length;
172 return chan << bf->offset;
H A Damba-clcd.c321 static inline u32 convert_bitfield(int val, struct fb_bitfield *bf) argument
323 unsigned int mask = (1 << bf->length) - 1;
325 return (val >> (16 - bf->length) & mask) << bf->offset;
H A Dvt8500lcdfb.c136 static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf) argument
139 chan >>= 16 - bf->length;
140 return chan << bf->offset;
H A Datmel_lcdfb.c621 static inline unsigned int chan_to_field(unsigned int chan, const struct fb_bitfield *bf) argument
624 chan >>= 16 - bf->length;
625 return chan << bf->offset;
H A Dimxfb.c212 static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf) argument
215 chan >>= 16 - bf->length;
216 return chan << bf->offset;
H A Djz4740_fb.c238 struct fb_bitfield *bf)
240 return (((val << bf->length) + 0x7FFF - val) >> 16) << bf->offset;
237 jzfb_convert_color_to_hw(unsigned val, struct fb_bitfield *bf) argument
H A Dmxsfb.c264 static inline unsigned chan_to_field(unsigned chan, struct fb_bitfield *bf) argument
267 chan >>= 16 - bf->length;
268 return chan << bf->offset;
H A Dnuc900fb.c293 struct fb_bitfield *bf)
296 chan >>= 16 - bf->length;
297 return chan << bf->offset;
292 chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
H A Dpxa168fb.c477 static unsigned int chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
479 return ((chan & 0xffff) >> (16 - bf->length)) << bf->offset;
H A Ds3c2410fb.c473 struct fb_bitfield *bf)
476 chan >>= 16 - bf->length;
477 return chan << bf->offset;
472 chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
H A Dsa1100fb.c246 static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf) argument
249 chan >>= 16 - bf->length;
250 return chan << bf->offset;
H A Dmx3fb.c910 static u32 chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
913 chan >>= 16 - bf->length;
914 return chan << bf->offset;
H A Dcyber2000fb.c265 static inline u32 convert_bitfield(u_int val, struct fb_bitfield *bf) argument
267 u_int mask = (1 << bf->length) - 1;
269 return (val >> (16 - bf->length) & mask) << bf->offset;
H A Ds3c-fb.c765 struct fb_bitfield *bf)
768 chan >>= 16 - bf->length;
769 return chan << bf->offset;
764 chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
H A Dsm501fb.c902 struct fb_bitfield *bf)
905 chan >>= 16 - bf->length;
906 return chan << bf->offset;
901 chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
/drivers/video/geode/
H A Dlxfb_core.c294 static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf) argument
297 chan >>= 16 - bf->length;
298 return chan << bf->offset;
/drivers/isdn/i4l/
H A Disdn_ppp.c663 struct ippp_buf_queue *bf, *bl; local
687 bf = is->first;
691 if (bf->next != bl || (is->state & IPPP_NOBLOCK)) {
706 struct ippp_buf_queue *bf, *bl; local
733 bf = is->first;
736 if (bf == bl) {
738 bf = bf->next;
739 kfree(bf->buf);
740 is->first = bf;
[all...]
/drivers/staging/sm7xx/
H A Dsmtcfb.c306 struct fb_bitfield *bf)
309 chan >>= 16 - bf->length;
310 return chan << bf->offset;
305 chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
/drivers/net/wan/
H A Dcycx_x25.c967 char bf[20]; local
976 cycx_peek(&card->hw, cmd->buf + 10, &bf, toread);
987 hex_dump("Message", bf, toread);
/drivers/video/mb862xx/
H A Dmb862xxfbdrv.c74 struct fb_bitfield *bf)
77 chan >>= 16 - bf->length;
78 return chan << bf->offset;
73 chan_to_field(unsigned int chan, struct fb_bitfield *bf) argument
/drivers/tty/vt/
H A Dcp437.uni193 0xa8 U+00bf
/drivers/net/wireless/ath/ath9k/
H A Dmain.c2273 struct ath_buf *bf; local
2289 bf = avp->av_bcbuf;
2290 if (!bf || !bf->bf_mpdu)
2293 status = ath9k_hw_txprocdesc(ah, bf->bf_desc, &ts);
H A Ddebug.c780 void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf, argument
789 sc->debug.stats.txstats[qnum].tx_bytes_all += bf->bf_mpdu->len;
791 if (bf_isampdu(bf)) {
/drivers/net/ethernet/mellanox/mlx4/
H A Dmlx4_en.h255 struct mlx4_bf bf; member in struct:mlx4_en_tx_ring
/drivers/staging/media/easycap/
H A Deasycap_ioctl.c368 char bf[5], fo[32], *pc; local
385 pc = &bf[0];
388 bf[4] = 0;

Completed in 495 milliseconds

123