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_dword
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/
ashlti3.c
26
const int
bits_in_dword
= (int)(sizeof(di_int) * CHAR_BIT);
local in function:__ashlti3
30
if (b &
bits_in_dword
) /*
bits_in_dword
<= b < bits_in_tword */
33
result.s.high = input.s.low << (b -
bits_in_dword
);
35
else /* 0 <= b <
bits_in_dword
*/
40
result.s.high = (input.s.high << b) | (input.s.low >> (
bits_in_dword
- b));
ashrti3.c
26
const int
bits_in_dword
= (int)(sizeof(di_int) * CHAR_BIT);
local in function:__ashrti3
30
if (b &
bits_in_dword
) /*
bits_in_dword
<= b < bits_in_tword */
33
result.s.high = input.s.high >> (
bits_in_dword
- 1);
34
result.s.low = input.s.high >> (b -
bits_in_dword
);
36
else /* 0 <= b <
bits_in_dword
*/
41
result.s.low = (input.s.high << (
bits_in_dword
- b)) | (input.s.low >> b);
lshrti3.c
26
const int
bits_in_dword
= (int)(sizeof(di_int) * CHAR_BIT);
local in function:__lshrti3
30
if (b &
bits_in_dword
) /*
bits_in_dword
<= b < bits_in_tword */
33
result.s.low = input.s.high >> (b -
bits_in_dword
);
35
else /* 0 <= b <
bits_in_dword
*/
40
result.s.low = (input.s.high << (
bits_in_dword
- b)) | (input.s.low >> b);
Completed in 13 milliseconds
Indexes created Fri Sep 26 20:09:58 GMT 2025