Searched refs:bm (Results 1 - 21 of 21) sorted by relevance

/u-boot/arch/mips/lib/
H A Dashldi3.c6 word_type bm; local
12 bm = 32 - b;
14 if (bm <= 0) {
16 w.s.high = (unsigned int) uu.s.low << -bm;
18 const unsigned int carries = (unsigned int) uu.s.low >> bm;
H A Dashrdi3.c6 word_type bm; local
12 bm = 32 - b;
14 if (bm <= 0) {
18 w.s.low = uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
H A Dlshrdi3.c6 word_type bm; local
12 bm = 32 - b;
14 if (bm <= 0) {
16 w.s.low = (unsigned int) uu.s.high >> -bm;
18 const unsigned int carries = (unsigned int) uu.s.high << bm;
/u-boot/arch/sh/lib/
H A Dashldi3.c6 word_type bm; local
12 bm = 32 - b;
14 if (bm <= 0) {
16 w.s.high = (unsigned int) uu.s.low << -bm;
18 const unsigned int carries = (unsigned int) uu.s.low >> bm;
H A Dashrdi3.c6 word_type bm; local
12 bm = 32 - b;
14 if (bm <= 0) {
18 w.s.low = uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
H A Dlshrdi3.c6 word_type bm; local
12 bm = 32 - b;
14 if (bm <= 0) {
16 w.s.low = (unsigned int) uu.s.high >> -bm;
18 const unsigned int carries = (unsigned int) uu.s.high << bm;
/u-boot/drivers/block/
H A Dblkmap.c39 * @read.bm: Blkmap to which this slice belongs
45 ulong (*read)(struct blkmap *bm, struct blkmap_slice *bms,
51 * @write.bm: Blkmap to which this slice belongs
57 ulong (*write)(struct blkmap *bm, struct blkmap_slice *bms,
63 * @read.bm: Blkmap to which this slice belongs
66 void (*destroy)(struct blkmap *bm, struct blkmap_slice *bms);
74 static bool blkmap_slice_available(struct blkmap *bm, struct blkmap_slice *new) argument
82 list_for_each_entry(bms, &bm->slices, node) {
93 static int blkmap_slice_add(struct blkmap *bm, struct blkmap_slice *new) argument
95 struct blk_desc *bd = dev_get_uclass_plat(bm
132 blkmap_linear_read(struct blkmap *bm, struct blkmap_slice *bms, lbaint_t blknr, lbaint_t blkcnt, void *buffer) argument
140 blkmap_linear_write(struct blkmap *bm, struct blkmap_slice *bms, lbaint_t blknr, lbaint_t blkcnt, const void *buffer) argument
152 struct blkmap *bm = dev_get_plat(dev); local
204 blkmap_mem_read(struct blkmap *bm, struct blkmap_slice *bms, lbaint_t blknr, lbaint_t blkcnt, void *buffer) argument
216 blkmap_mem_write(struct blkmap *bm, struct blkmap_slice *bms, lbaint_t blknr, lbaint_t blkcnt, const void *buffer) argument
229 blkmap_mem_destroy(struct blkmap *bm, struct blkmap_slice *bms) argument
240 struct blkmap *bm = dev_get_plat(dev); local
278 struct blkmap *bm = dev_get_plat(dev); local
294 blkmap_blk_read_slice(struct blkmap *bm, struct blkmap_slice *bms, lbaint_t blknr, lbaint_t blkcnt, void *buffer) argument
309 struct blkmap *bm = dev_get_plat(dev->parent); local
327 blkmap_blk_write_slice(struct blkmap *bm, struct blkmap_slice *bms, lbaint_t blknr, lbaint_t blkcnt, const void *buffer) argument
342 struct blkmap *bm = dev_get_plat(dev->parent); local
373 struct blkmap *bm = dev_get_plat(dev); local
400 struct blkmap *bm = dev_get_plat(dev); local
428 struct blkmap *bm; local
443 struct blkmap *bm; local
[all...]
H A Dblkmap_helper.c18 struct blkmap *bm; local
28 bm = dev_get_plat(bm_dev);
29 desc = dev_get_uclass_plat(bm->blk);
40 ret = device_probe(bm->blk);
/u-boot/arch/m68k/lib/
H A Dlshrdi3.c27 word_type bm; local
35 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
36 if (bm <= 0)
39 w.s.low = (USItype)uu.s.high >> -bm;
43 USItype carries = (USItype)uu.s.high << bm;
H A Dashldi3.c27 word_type bm; local
35 bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
36 if (bm <= 0)
39 w.s.high = (USItype)uu.s.low << -bm;
43 USItype carries = (USItype)uu.s.low >> bm;
H A Dashrdi3.c26 word_type bm; local
34 bm = (sizeof(SItype) * BITS_PER_UNIT) - b;
35 if (bm <= 0) {
38 w.s.low = uu.s.high >> -bm;
40 USItype carries = (USItype)uu.s.high << bm;
/u-boot/arch/nios2/lib/
H A Dlibgcc.c57 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; local
60 if (bm <= 0)
63 w.s.high = (UWtype) uu.s.low << -bm;
67 const UWtype carries = (UWtype) uu.s.low >> bm;
83 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; local
86 if (bm <= 0)
90 w.s.low = uu.s.high >> -bm;
94 const UWtype carries = (UWtype) uu.s.high << bm;
110 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; local
113 if (bm <
154 UWtype b, bm; local
[all...]
/u-boot/arch/arm/cpu/arm926ejs/mxs/
H A Diomux.c31 u32 reg, ofs, bp, bm; local
39 bm = 0x3 << bp;
41 reg &= ~bm;
51 bm = 0x3 << bp;
53 reg &= ~bm;
/u-boot/arch/arc/lib/
H A Dlibgcc2.c15 const shift_count_type bm = W_TYPE_SIZE - b; local
18 if (bm <= 0) {
20 w.s.high = (UWtype)uu.s.low << -bm;
22 const UWtype carries = (UWtype) uu.s.low >> bm;
38 const shift_count_type bm = W_TYPE_SIZE - b; local
41 if (bm <= 0) {
44 w.s.low = uu.s.high >> -bm;
46 const UWtype carries = (UWtype) uu.s.high << bm;
62 const shift_count_type bm = W_TYPE_SIZE - b; local
65 if (bm <
[all...]
/u-boot/arch/mips/mach-octeon/include/mach/
H A Dcvmx-l2c-defs.h166 u64 bm; member in struct:rlevel_byte_data
H A Docteon_ddr.h190 u64 bm; member in struct:rlevel_bitmask
/u-boot/drivers/ram/octeon/
H A Docteon3_lmc.c2316 static u64 ppbm(u64 bm) argument
2318 if (bm != 0ul) {
2319 while ((bm & 0x0fful) == 0ul)
2320 bm >>= 4;
2323 return bm;
2337 static void do_display_bm(int if_num, int rank, void *bm, argument
2343 int *bitmasks = (int *)bm;
2354 (struct rlevel_bitmask *)bm;
2357 if_num, rank, ppbm(rlevel_bitmask[8].bm),
2358 ppbm(rlevel_bitmask[7].bm), ppb
[all...]
H A Docteon_ddr.c1580 u64 bitmask = rlevel_bitmask_p->bm;
1672 debug_bitmask_print("bm:%08lx mask:%02lx, width:%2u, mstart:%2d, fb:%2u, lb:%2u (bu:%2d, tb:%2d, bl:%2d, n:%2d, t:%2d, x:%2d) errors:%3d %s\n",
/u-boot/drivers/i2c/
H A Di2c-uniphier-f.c53 u32 bm; /* bus monitor */ member in struct:uniphier_fi2c_regs
/u-boot/lib/efi_loader/
H A Defi_bootmgr.c202 struct blkmap *bm; local
217 bm = dev_get_plat(bm_dev);
221 return bm->blk;
/u-boot/drivers/net/
H A Dmvpp2.c2710 u32 bm; local
2712 bm = cookie & ~(0xFF << MVPP2_BM_COOKIE_POOL_OFFS);
2713 bm |= ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS);
2715 return bm;
2754 static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm, argument
2758 int pool = mvpp2_bm_cookie_pool_get(bm);
4148 u32 bm = mvpp2_bm_cookie_build(port, rx_desc); local
4150 mvpp2_pool_refill(port, bm,
4472 u32 bm, dma_addr_t dma_addr)
4474 mvpp2_pool_refill(port, bm, dma_add
4470 mvpp2_rx_refill(struct mvpp2_port *port, struct mvpp2_bm_pool *bm_pool, u32 bm, dma_addr_t dma_addr) argument
5077 u32 bm, rx_status; local
[all...]

Completed in 403 milliseconds