/arch/powerpc/math-emu/ |
D | udivmodti4.c | 15 _FP_I_TYPE b, bm; in _fp_udivmodti4() local 51 count_leading_zeros (bm, d0); in _fp_udivmodti4() 53 if (bm != 0) in _fp_udivmodti4() 58 d0 = d0 << bm; in _fp_udivmodti4() 59 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm)); in _fp_udivmodti4() 60 n0 = n0 << bm; in _fp_udivmodti4() 75 count_leading_zeros (bm, d0); in _fp_udivmodti4() 77 if (bm == 0) in _fp_udivmodti4() 95 b = _FP_W_TYPE_SIZE - bm; in _fp_udivmodti4() 97 d0 = d0 << bm; in _fp_udivmodti4() [all …]
|
/arch/mips/dec/prom/ |
D | memory.c | 63 memmap *bm; in rex_setup_memory_region() local 66 bm = (memmap *)CKSEG0ADDR(0x28000); in rex_setup_memory_region() 68 bitmap_size = rex_getbitmap(bm); in rex_setup_memory_region() 72 if (bm->bitmap[i] == 0xff) in rex_setup_memory_region() 73 mem_size += (8 * bm->pagesize); in rex_setup_memory_region() 75 mem_start += (8 * bm->pagesize); in rex_setup_memory_region() 78 mem_start += mem_size + (8 * bm->pagesize); in rex_setup_memory_region()
|
/arch/sh/lib/ |
D | lshrdi3.c | 9 word_type bm; in __lshrdi3() local 15 bm = 32 - b; in __lshrdi3() 17 if (bm <= 0) { in __lshrdi3() 19 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 21 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
|
D | ashldi3.c | 9 word_type bm; in __ashldi3() local 15 bm = 32 - b; in __ashldi3() 17 if (bm <= 0) { in __ashldi3() 19 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 21 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
|
D | ashrdi3.c | 9 word_type bm; in __ashrdi3() local 15 bm = 32 - b; in __ashrdi3() 17 if (bm <= 0) { in __ashrdi3() 21 w.s.low = uu.s.high >> -bm; in __ashrdi3() 23 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
|
/arch/microblaze/lib/ |
D | lshrdi3.c | 9 word_type bm; in __lshrdi3() local 15 bm = 32 - b; in __lshrdi3() 17 if (bm <= 0) { in __lshrdi3() 19 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 21 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
|
D | ashldi3.c | 9 word_type bm; in __ashldi3() local 15 bm = 32 - b; in __ashldi3() 17 if (bm <= 0) { in __ashldi3() 19 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 21 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
|
D | ashrdi3.c | 9 word_type bm; in __ashrdi3() local 15 bm = 32 - b; in __ashrdi3() 17 if (bm <= 0) { in __ashrdi3() 21 w.s.low = uu.s.high >> -bm; in __ashrdi3() 23 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
|
/arch/m68k/lib/ |
D | ashldi3.c | 38 word_type bm; in __ashldi3() local 46 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __ashldi3() 47 if (bm <= 0) in __ashldi3() 50 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3() 54 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
|
D | lshrdi3.c | 38 word_type bm; in __lshrdi3() local 46 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __lshrdi3() 47 if (bm <= 0) in __lshrdi3() 50 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3() 54 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
|
D | ashrdi3.c | 38 word_type bm; in __ashrdi3() local 46 bm = (sizeof (SItype) * BITS_PER_UNIT) - b; in __ashrdi3() 47 if (bm <= 0) in __ashrdi3() 51 w.s.low = uu.s.high >> -bm; in __ashrdi3() 55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
|
/arch/h8300/lib/ |
D | lshrdi3.c | 7 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __lshrdi3() local 13 if (bm <= 0) { in __lshrdi3() 15 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3() 17 const UWtype carries = (UWtype) uu.s.high << bm; in __lshrdi3()
|
D | ashldi3.c | 8 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashldi3() local 14 if (bm <= 0) { in __ashldi3() 16 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3() 18 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
|
D | ashrdi3.c | 7 const word_type bm = (sizeof (Wtype) * BITS_PER_UNIT) - b; in __ashrdi3() local 13 if (bm <= 0) { in __ashrdi3() 16 w.s.low = uu.s.high >> -bm; in __ashrdi3() 18 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
|
/arch/arm/boot/dts/ |
D | armada-xp-openblocks-ax3-4.dts | 116 buffer-manager = <&bm>; 117 bm,pool-long = <0>; 123 buffer-manager = <&bm>; 124 bm,pool-long = <1>; 130 buffer-manager = <&bm>; 131 bm,pool-long = <2>; 137 buffer-manager = <&bm>; 138 bm,pool-long = <3>; 168 bm@c0000 { 173 bm-bppi {
|
D | armada-388-db.dts | 54 buffer-manager = <&bm>; 55 bm,pool-long = <2>; 56 bm,pool-short = <3>; 67 buffer-manager = <&bm>; 68 bm,pool-long = <0>; 69 bm,pool-short = <1>; 90 bm@c8000 { 111 bm-bppi {
|
D | armada-385-db-ap.dts | 98 buffer-manager = <&bm>; 99 bm,pool-long = <1>; 100 bm,pool-short = <3>; 108 buffer-manager = <&bm>; 109 bm,pool-long = <2>; 110 bm,pool-short = <3>; 129 buffer-manager = <&bm>; 130 bm,pool-long = <0>; 131 bm,pool-short = <3>; 134 bm@c8000 { [all …]
|
D | armada-xp-db.dts | 98 buffer-manager = <&bm>; 99 bm,pool-long = <0>; 105 buffer-manager = <&bm>; 106 bm,pool-long = <1>; 112 buffer-manager = <&bm>; 113 bm,pool-long = <2>; 119 buffer-manager = <&bm>; 120 bm,pool-long = <3>; 123 bm@c0000 { 178 bm-bppi {
|
D | armada-xp-gp.dts | 124 buffer-manager = <&bm>; 125 bm,pool-long = <0>; 131 buffer-manager = <&bm>; 132 bm,pool-long = <1>; 138 buffer-manager = <&bm>; 139 bm,pool-long = <2>; 145 buffer-manager = <&bm>; 146 bm,pool-long = <3>; 159 bm@c0000 { 175 bm-bppi {
|
D | armada-385-linksys.dtsi | 91 &bm { 102 buffer-manager = <&bm>; 103 bm,pool-long = <0>; 104 bm,pool-short = <1>; 114 buffer-manager = <&bm>; 115 bm,pool-long = <2>; 116 bm,pool-short = <3>;
|
D | armada-38x-solidrun-microsom.dtsi | 35 &bm { 49 buffer-manager = <&bm>; 50 bm,pool-long = <0>; 51 bm,pool-short = <1>;
|
D | armada-xp-linksys-mamba.dts | 68 buffer-manager = <&bm>; 69 bm,pool-long = <0>; 70 bm,pool-short = <1>; 82 buffer-manager = <&bm>; 83 bm,pool-long = <2>; 84 bm,pool-short = <3>; 165 bm@c8000 { 170 bm-bppi {
|
/arch/mips/math-emu/ |
D | sp_div.c | 16 unsigned int bm; in ieee754sp_div() local 118 for (bm = SP_MBIT(SP_FBITS + 2); bm; bm >>= 1) { in ieee754sp_div() 121 rm |= bm; in ieee754sp_div()
|
D | dp_div.c | 16 u64 bm; in ieee754dp_div() local 118 for (bm = DP_MBIT(DP_FBITS + 2); bm; bm >>= 1) { in ieee754dp_div() 121 rm |= bm; in ieee754dp_div()
|
/arch/x86/mm/pat/ |
D | cpa-test.c | 120 unsigned long *bm; in pageattr_test() local 130 bm = vzalloc((max_pfn_mapped + 7) / 8); in pageattr_test() 131 if (!bm) { in pageattr_test() 167 if (test_bit(pfn + k, bm)) { in pageattr_test() 171 __set_bit(pfn + k, bm); in pageattr_test() 213 vfree(bm); in pageattr_test()
|