OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bits_in_word
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
ashldi3.c
24
const int
bits_in_word
= (int)(sizeof(si_int) * CHAR_BIT);
local in function:__ashldi3
28
if (b &
bits_in_word
) /*
bits_in_word
<= b < bits_in_dword */
31
result.s.high = input.s.low << (b -
bits_in_word
);
33
else /* 0 <= b <
bits_in_word
*/
38
result.s.high = (input.s.high << b) | (input.s.low >> (
bits_in_word
- b));
ashrdi3.c
24
const int
bits_in_word
= (int)(sizeof(si_int) * CHAR_BIT);
local in function:__ashrdi3
28
if (b &
bits_in_word
) /*
bits_in_word
<= b < bits_in_dword */
31
result.s.high = input.s.high >> (
bits_in_word
- 1);
32
result.s.low = input.s.high >> (b -
bits_in_word
);
34
else /* 0 <= b <
bits_in_word
*/
39
result.s.low = (input.s.high << (
bits_in_word
- b)) | (input.s.low >> b);
lshrdi3.c
24
const int
bits_in_word
= (int)(sizeof(si_int) * CHAR_BIT);
local in function:__lshrdi3
28
if (b &
bits_in_word
) /*
bits_in_word
<= b < bits_in_dword */
31
result.s.low = input.s.high >> (b -
bits_in_word
);
33
else /* 0 <= b <
bits_in_word
*/
38
result.s.low = (input.s.high << (
bits_in_word
- b)) | (input.s.low >> b);
Completed in 85 milliseconds
Indexes created Fri Sep 26 08:10:20 GMT 2025