Home
last modified time | relevance | path

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

12

/arch/powerpc/math-emu/
Dudivmodti4.c14 _FP_I_TYPE b, bm; in _fp_udivmodti4() local
50 count_leading_zeros (bm, d0); in _fp_udivmodti4()
52 if (bm != 0) in _fp_udivmodti4()
57 d0 = d0 << bm; in _fp_udivmodti4()
58 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm)); in _fp_udivmodti4()
59 n0 = n0 << bm; in _fp_udivmodti4()
74 count_leading_zeros (bm, d0); in _fp_udivmodti4()
76 if (bm == 0) in _fp_udivmodti4()
94 b = _FP_W_TYPE_SIZE - bm; in _fp_udivmodti4()
96 d0 = d0 << bm; in _fp_udivmodti4()
[all …]
/arch/mips/dec/prom/
Dmemory.c64 memmap *bm; in rex_setup_memory_region() local
67 bm = (memmap *)CKSEG0ADDR(0x28000); in rex_setup_memory_region()
69 bitmap_size = rex_getbitmap(bm); in rex_setup_memory_region()
73 if (bm->bitmap[i] == 0xff) in rex_setup_memory_region()
74 mem_size += (8 * bm->pagesize); in rex_setup_memory_region()
76 mem_start += (8 * bm->pagesize); in rex_setup_memory_region()
79 mem_start += mem_size + (8 * bm->pagesize); in rex_setup_memory_region()
/arch/microblaze/lib/
Dashldi3.c8 word_type bm; in __ashldi3() local
14 bm = 32 - b; in __ashldi3()
16 if (bm <= 0) { in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
Dlshrdi3.c8 word_type bm; in __lshrdi3() local
14 bm = 32 - b; in __lshrdi3()
16 if (bm <= 0) { in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
Dashrdi3.c8 word_type bm; in __ashrdi3() local
14 bm = 32 - b; in __ashrdi3()
16 if (bm <= 0) { in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
/arch/sh/lib/
Dlshrdi3.c8 word_type bm; in __lshrdi3() local
14 bm = 32 - b; in __lshrdi3()
16 if (bm <= 0) { in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
Dashldi3.c8 word_type bm; in __ashldi3() local
14 bm = 32 - b; in __ashldi3()
16 if (bm <= 0) { in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
Dashrdi3.c8 word_type bm; in __ashrdi3() local
14 bm = 32 - b; in __ashrdi3()
16 if (bm <= 0) { in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
/arch/score/lib/
Dashldi3.c26 word_type bm; in __ashldi3() local
32 bm = 32 - b; in __ashldi3()
34 if (bm <= 0) { in __ashldi3()
36 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
38 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
Dlshrdi3.c27 word_type bm; in __lshrdi3() local
33 bm = 32 - b; in __lshrdi3()
35 if (bm <= 0) { in __lshrdi3()
37 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
39 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
Dashrdi3.c26 word_type bm; in __ashrdi3() local
32 bm = 32 - b; in __ashrdi3()
34 if (bm <= 0) { in __ashrdi3()
38 w.s.low = uu.s.high >> -bm; in __ashrdi3()
40 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
/arch/mips/lib/
Dashldi3.c8 word_type bm; in __ashldi3() local
14 bm = 32 - b; in __ashldi3()
16 if (bm <= 0) { in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
Dlshrdi3.c8 word_type bm; in __lshrdi3() local
14 bm = 32 - b; in __lshrdi3()
16 if (bm <= 0) { in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
Dashrdi3.c8 word_type bm; in __ashrdi3() local
14 bm = 32 - b; in __ashrdi3()
16 if (bm <= 0) { in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
/arch/blackfin/lib/
Dashldi3.c16 word_type bm; in __ashldi3() local
24 bm = (sizeof(SItype) * BITS_PER_UNIT) - b; in __ashldi3()
25 if (bm <= 0) { in __ashldi3()
27 w.s.high = (USItype) uu.s.low << -bm; in __ashldi3()
29 USItype carries = (USItype) uu.s.low >> bm; in __ashldi3()
Dashrdi3.c16 word_type bm; in __ashrdi3() local
24 bm = (sizeof(SItype) * BITS_PER_UNIT) - b; in __ashrdi3()
25 if (bm <= 0) { in __ashrdi3()
28 w.s.low = uu.s.high >> -bm; in __ashrdi3()
30 USItype carries = (USItype) uu.s.high << bm; in __ashrdi3()
Dlshrdi3.c16 word_type bm; in __lshrdi3() local
24 bm = (sizeof(SItype) * BITS_PER_UNIT) - b; in __lshrdi3()
25 if (bm <= 0) { in __lshrdi3()
27 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
29 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3()
/arch/mn10300/lib/
Dlshrdi3.c41 word_type bm; in __lshrdi3() local
49 bm = (sizeof(SItype) * BITS_PER_UNIT) - b; in __lshrdi3()
50 if (bm <= 0) { in __lshrdi3()
52 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
54 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3()
Dashrdi3.c42 word_type bm; in __ashrdi3() local
49 bm = (sizeof(SItype) * BITS_PER_UNIT) - b; in __ashrdi3()
50 if (bm <= 0) { in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
/arch/m68k/lib/
Dashldi3.c40 word_type bm; in __ashldi3() local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __ashldi3()
49 if (bm <= 0) in __ashldi3()
52 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
56 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
Dlshrdi3.c40 word_type bm; in __lshrdi3() local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __lshrdi3()
49 if (bm <= 0) in __lshrdi3()
52 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
56 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
Dashrdi3.c40 word_type bm; in __ashrdi3() local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __ashrdi3()
49 if (bm <= 0) in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
57 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
/arch/h8300/lib/
Dashrdi3.c40 word_type bm; in __ashrdi3() local
48 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __ashrdi3()
49 if (bm <= 0) in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
57 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
/arch/arm/mach-mxs/
Diomux.c39 u32 reg, ofs, bp, bm; in mxs_iomux_setup_pad() local
46 bm = 0x3 << bp; in mxs_iomux_setup_pad()
48 reg &= ~bm; in mxs_iomux_setup_pad()
58 bm = 0x3 << bp; in mxs_iomux_setup_pad()
60 reg &= ~bm; in mxs_iomux_setup_pad()
/arch/mips/math-emu/
Ddp_div.c130 u64 bm; in ieee754dp_div() local
132 for (bm = DP_MBIT(DP_MBITS + 2); bm; bm >>= 1) { in ieee754dp_div()
135 rm |= bm; in ieee754dp_div()

12