OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lower_mask
(Results
1 - 3
of
3
) 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
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
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;
/src/external/bsd/zstd/dist/doc/educational_decoder/
zstd_decompress.c
2244
const u16
lower_mask
= ((u16)1 << (bits - 1)) - 1;
local
2247
if ((val &
lower_mask
) < threshold) {
2249
val = val &
lower_mask
;
2250
} else if (val >
lower_mask
) {
Completed in 19 milliseconds
Indexes created Sun Mar 22 00:23:16 UTC 2026