OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lower_mask
(Results
1 - 2
of
2
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
muldi3.c
25
const su_int
lower_mask
= (su_int)~0 >> bits_in_word_2;
local in function:__muldsi3
26
r.s.low = (a &
lower_mask
) * (b &
lower_mask
);
28
r.s.low &=
lower_mask
;
29
t += (a >> bits_in_word_2) * (b &
lower_mask
);
30
r.s.low += (t &
lower_mask
) << bits_in_word_2;
33
r.s.low &=
lower_mask
;
34
t += (b >> bits_in_word_2) * (a &
lower_mask
);
35
r.s.low += (t &
lower_mask
) << bits_in_word_2;
multi3.c
27
const du_int
lower_mask
= (du_int)~0 >> bits_in_dword_2;
local in function:__mulddi3
28
r.s.low = (a &
lower_mask
) * (b &
lower_mask
);
30
r.s.low &=
lower_mask
;
31
t += (a >> bits_in_dword_2) * (b &
lower_mask
);
32
r.s.low += (t &
lower_mask
) << bits_in_dword_2;
35
r.s.low &=
lower_mask
;
36
t += (b >> bits_in_dword_2) * (a &
lower_mask
);
37
r.s.low += (t &
lower_mask
) << bits_in_dword_2;
Completed in 12 milliseconds
Indexes created Tue Sep 30 10:09:55 GMT 2025