Home
last modified time | relevance | path

Searched refs:bits_in_word (Results 1 – 6 of 6) sorted by relevance

/external/compiler-rt/lib/builtins/
Dashrdi3.c26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in ARM_EABI_FNALIAS() local
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ in ARM_EABI_FNALIAS()
33 result.s.high = input.s.high >> (bits_in_word - 1); in ARM_EABI_FNALIAS()
34 result.s.low = input.s.high >> (b - bits_in_word); in ARM_EABI_FNALIAS()
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b); in ARM_EABI_FNALIAS()
Dlshrdi3.c26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in ARM_EABI_FNALIAS() local
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ in ARM_EABI_FNALIAS()
33 result.s.low = input.s.high >> (b - bits_in_word); in ARM_EABI_FNALIAS()
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b); in ARM_EABI_FNALIAS()
Dashldi3.c26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in ARM_EABI_FNALIAS() local
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ in ARM_EABI_FNALIAS()
33 result.s.high = input.s.low << (b - bits_in_word); in ARM_EABI_FNALIAS()
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b)); in ARM_EABI_FNALIAS()
/external/llvm-project/compiler-rt/lib/builtins/
Dashrdi3.c20 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in __ashrdi3() local
24 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ { in __ashrdi3()
26 result.s.high = input.s.high >> (bits_in_word - 1); in __ashrdi3()
27 result.s.low = input.s.high >> (b - bits_in_word); in __ashrdi3()
32 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b); in __ashrdi3()
Dlshrdi3.c20 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in __lshrdi3() local
24 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ { in __lshrdi3()
26 result.s.low = input.s.high >> (b - bits_in_word); in __lshrdi3()
31 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b); in __lshrdi3()
Dashldi3.c20 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in __ashldi3() local
24 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ { in __ashldi3()
26 result.s.high = input.s.low << (b - bits_in_word); in __ashldi3()
31 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b)); in __ashldi3()