OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bits_in_word
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/lib/builtins/
ashldi3.c
26
const int
bits_in_word
= (int)(sizeof(si_int) * CHAR_BIT);
local
30
if (b &
bits_in_word
) /*
bits_in_word
<= b < bits_in_dword */
33
result.s.high = input.s.low << (b -
bits_in_word
);
35
else /* 0 <= b <
bits_in_word
*/
40
result.s.high = (input.s.high << b) | (input.s.low >> (
bits_in_word
- b));
lshrdi3.c
26
const int
bits_in_word
= (int)(sizeof(si_int) * CHAR_BIT);
local
30
if (b &
bits_in_word
) /*
bits_in_word
<= b < bits_in_dword */
33
result.s.low = input.s.high >> (b -
bits_in_word
);
35
else /* 0 <= b <
bits_in_word
*/
40
result.s.low = (input.s.high << (
bits_in_word
- b)) | (input.s.low >> b);
ashrdi3.c
26
const int
bits_in_word
= (int)(sizeof(si_int) * CHAR_BIT);
local
30
if (b &
bits_in_word
) /*
bits_in_word
<= b < bits_in_dword */
33
result.s.high = input.s.high >> (
bits_in_word
- 1);
34
result.s.low = input.s.high >> (b -
bits_in_word
);
36
else /* 0 <= b <
bits_in_word
*/
41
result.s.low = (input.s.high << (
bits_in_word
- b)) | (input.s.low >> b);
Completed in 35 milliseconds