Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/lib/builtins/
Daeabi_llsr.c26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in __aeabi_llsr() local
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ in __aeabi_llsr()
33 result.s.low = input.s.high >> (b - bits_in_word); in __aeabi_llsr()
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b); in __aeabi_llsr()
Daeabi_llsl.c26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT); in __aeabi_llsl() local
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */ in __aeabi_llsl()
33 result.s.high = input.s.low << (b - bits_in_word); in __aeabi_llsl()
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b)); in __aeabi_llsl()