HomeSort by relevance Sort by last modified time
    Searched full:bits_in_dword (Results 1 - 10 of 10) sorted by null

  /external/compiler-rt/lib/builtins/
ashrti3.c 26 const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT); local
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);
ashlti3.c 26 const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT); local
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));
lshrti3.c 26 const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT); local
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);
ashldi3.c 19 /* Precondition: 0 <= b < bits_in_dword */
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */
ashrdi3.c 19 /* Precondition: 0 <= b < bits_in_dword */
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */
lshrdi3.c 19 /* Precondition: 0 <= b < bits_in_dword */
30 if (b & bits_in_word) /* bits_in_word <= b < bits_in_dword */
  /external/compiler-rt/test/builtins/Unit/
ashldi3_test.c 19 // Precondition: 0 <= b < bits_in_dword
ashrdi3_test.c 19 // Precondition: 0 <= b < bits_in_dword
lshrdi3_test.c 19 // Precondition: 0 <= b < bits_in_dword
lshrti3_test.c 21 // Precondition: 0 <= b < bits_in_dword

Completed in 957 milliseconds