Home
last modified time | relevance | path

Searched refs:bm (Results 1 – 15 of 15) sorted by relevance

/rk3399_rockchip-uboot/arch/nios2/lib/
H A Dlibgcc.c58 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashldi3() local
61 if (bm <= 0) in __ashldi3()
64 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
68 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
84 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashrdi3() local
87 if (bm <= 0) in __ashrdi3()
91 w.s.low = uu.s.high >> -bm; in __ashrdi3()
95 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
111 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __lshrdi3() local
114 if (bm <= 0) in __lshrdi3()
[all …]
/rk3399_rockchip-uboot/arch/arc/lib/
H A Dlibgcc2.c16 const shift_count_type bm = W_TYPE_SIZE - b; in __ashldi3() local
19 if (bm <= 0) { in __ashldi3()
21 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
23 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
39 const shift_count_type bm = W_TYPE_SIZE - b; in __ashrdi3() local
42 if (bm <= 0) { in __ashrdi3()
45 w.s.low = uu.s.high >> -bm; in __ashrdi3()
47 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
63 const shift_count_type bm = W_TYPE_SIZE - b; in __lshrdi3() local
66 if (bm <= 0) { in __lshrdi3()
[all …]
/rk3399_rockchip-uboot/arch/sh/lib/
H A Dashldi3.c6 word_type bm; in __ashldi3() local
12 bm = 32 - b; in __ashldi3()
14 if (bm <= 0) { in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
H A Dlshrdi3.c6 word_type bm; in __lshrdi3() local
12 bm = 32 - b; in __lshrdi3()
14 if (bm <= 0) { in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
H A Dashrdi3.c6 word_type bm; in __ashrdi3() local
12 bm = 32 - b; in __ashrdi3()
14 if (bm <= 0) { in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
/rk3399_rockchip-uboot/arch/mips/lib/
H A Dlshrdi3.c6 word_type bm; in __lshrdi3() local
12 bm = 32 - b; in __lshrdi3()
14 if (bm <= 0) { in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
H A Dashldi3.c6 word_type bm; in __ashldi3() local
12 bm = 32 - b; in __ashldi3()
14 if (bm <= 0) { in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
H A Dashrdi3.c6 word_type bm; in __ashrdi3() local
12 bm = 32 - b; in __ashrdi3()
14 if (bm <= 0) { in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
/rk3399_rockchip-uboot/arch/m68k/lib/
H A Dlshrdi3.c28 word_type bm; in __lshrdi3() local
36 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __lshrdi3()
37 if (bm <= 0) in __lshrdi3()
40 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
44 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
H A Dashldi3.c28 word_type bm; in __ashldi3() local
36 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __ashldi3()
37 if (bm <= 0) in __ashldi3()
40 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
44 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/
H A Diomux.c32 u32 reg, ofs, bp, bm; in mxs_iomux_setup_pad() local
40 bm = 0x3 << bp; in mxs_iomux_setup_pad()
42 reg &= ~bm; in mxs_iomux_setup_pad()
52 bm = 0x3 << bp; in mxs_iomux_setup_pad()
54 reg &= ~bm; in mxs_iomux_setup_pad()
/rk3399_rockchip-uboot/drivers/video/
H A Dcfb_console.c1125 static void draw_bitmap(uchar **fb, uchar *bm, struct palette *p, in draw_bitmap() argument
1142 *(unsigned char *) addr++ = bm[*off]; in draw_bitmap()
1148 *(unsigned short *) addr = p[bm[*off]].ce.w; in draw_bitmap()
1154 *(u32 *) addr = p[bm[*off]].ce.dw; in draw_bitmap()
1165 unsigned char *bm; in display_rle8_bitmap() local
1184 bm = (uchar *) img + __le32_to_cpu(img->header.data_offset); in display_rle8_bitmap()
1226 switch (bm[0]) { in display_rle8_bitmap()
1228 switch (bm[1]) { in display_rle8_bitmap()
1231 bm += 2; in display_rle8_bitmap()
1245 x += bm[2]; in display_rle8_bitmap()
[all …]
/rk3399_rockchip-uboot/drivers/net/
H A Dmvpp2.c2736 u32 bm; in mvpp2_bm_cookie_pool_set() local
2738 bm = cookie & ~(0xFF << MVPP2_BM_COOKIE_POOL_OFFS); in mvpp2_bm_cookie_pool_set()
2739 bm |= ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS); in mvpp2_bm_cookie_pool_set()
2741 return bm; in mvpp2_bm_cookie_pool_set()
2780 static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm, in mvpp2_pool_refill() argument
2784 int pool = mvpp2_bm_cookie_pool_get(bm); in mvpp2_pool_refill()
4151 u32 bm = mvpp2_bm_cookie_build(port, rx_desc); in mvpp2_rxq_drop_pkts() local
4153 mvpp2_pool_refill(port, bm, in mvpp2_rxq_drop_pkts()
4471 u32 bm, dma_addr_t dma_addr) in mvpp2_rx_refill() argument
4473 mvpp2_pool_refill(port, bm, dma_addr, (unsigned long)dma_addr); in mvpp2_rx_refill()
[all …]
/rk3399_rockchip-uboot/drivers/i2c/
H A Di2c-uniphier-f.c54 u32 bm; /* bus monitor */ member
/rk3399_rockchip-uboot/tools/buildman/
H A DREADME591 +/u-boot/lcd9b/.bm-work/00/common/lcd.c:120: undefined reference to `flush_dcache_range'
593 +make: *** [/u-boot/lcd9b/.bm-work/00/build/u-boot] Error 139
598 -/u-boot/lcd9b/.bm-work/00/common/lcd.c:120: undefined reference to `flush_dcache_range'
599 +/u-boot/lcd9b/.bm-work/00/common/lcd.c:125: undefined reference to `flush_dcache_range'