Home
last modified time | relevance | path

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

12

/arch/powerpc/math-emu/
Dudivmodti4.c15 _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/
Dmemory.c63 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/
Dlshrdi3.c9 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()
Dashldi3.c9 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()
Dashrdi3.c9 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/
Dlshrdi3.c9 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()
Dashldi3.c9 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()
Dashrdi3.c9 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/
Dashldi3.c38 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()
Dlshrdi3.c38 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()
Dashrdi3.c38 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/
Dlshrdi3.c7 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()
Dashldi3.c8 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()
Dashrdi3.c7 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/
Darmada-xp-openblocks-ax3-4.dts116 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 {
Darmada-388-db.dts54 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 {
Darmada-385-db-ap.dts98 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 …]
Darmada-xp-db.dts98 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 {
Darmada-xp-gp.dts124 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 {
Darmada-385-linksys.dtsi91 &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>;
Darmada-38x-solidrun-microsom.dtsi35 &bm {
49 buffer-manager = <&bm>;
50 bm,pool-long = <0>;
51 bm,pool-short = <1>;
Darmada-xp-linksys-mamba.dts68 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/
Dsp_div.c16 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()
Ddp_div.c16 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/
Dcpa-test.c120 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()

12