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

  /external/compiler-rt/lib/builtins/
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);
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);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/lib/rs/
libcompiler_rt.a     [all...]
  /prebuilts/sdk/renderscript/lib/arm/
libcompiler_rt.a     [all...]
  /prebuilts/sdk/tools/darwin/renderscript/lib/intermediates/armeabi-v7a/
libcompiler_rt.a     [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/lib/rs/
libcompiler_rt.a     [all...]
  /prebuilts/sdk/renderscript/lib/mips/
libcompiler_rt.a 609 ?{;?K <Vclang version 3.1 external/compiler-rt/lib/ashldi3.c/a/android_trees/jb-mr2-devbits_in_wordint__ashldi3long long intdi_intbsi_intainputallslowunsigned intsu_inthighdwords (…)
    [all...]
  /prebuilts/sdk/tools/darwin/renderscript/lib/intermediates/mips/
libcompiler_rt.a 609 ?{;?K <Vclang version 3.1 external/compiler-rt/lib/ashldi3.c/a/android_trees/jb-mr2-devbits_in_wordint__ashldi3long long intdi_intbsi_intainputallslowunsigned intsu_inthighdwords (…)
    [all...]
  /prebuilts/clang/linux-x86/host/3.5/lib/
libc++.so 

Completed in 308 milliseconds