Home
last modified time | relevance | path

Searched refs:__width (Results 1 – 2 of 2) sorted by relevance

/openbmc/u-boot/drivers/mmc/
H A Dtmio-common.c157 #define tmio_pio_read_fifo(__width, __suffix) \ argument
158 static void tmio_pio_read_fifo_##__width(struct tmio_sd_priv *priv, \
161 u##__width *buf = (u##__width *)pbuf; \
164 if (likely(IS_ALIGNED((uintptr_t)buf, ((__width) / 8)))) { \
165 for (i = 0; i < blksz / ((__width) / 8); i++) { \
170 for (i = 0; i < blksz / ((__width) / 8); i++) { \
171 u##__width data; \
211 #define tmio_pio_write_fifo(__width, __suffix) \ argument
212 static void tmio_pio_write_fifo_##__width(struct tmio_sd_priv *priv, \
215 const u##__width *buf = (const u##__width *)pbuf; \
[all …]
/openbmc/linux/drivers/media/dvb-frontends/
H A Dstv090x.c675 static inline s32 comp2(s32 __x, s32 __width) in comp2() argument
677 if (__width == 32) in comp2()
680 return (__x >= (1 << (__width - 1))) ? (__x - (1 << __width)) : __x; in comp2()