HomeSort by relevance Sort by last modified time
    Searched refs:POPCOUNT (Results 1 - 22 of 22) sorted by null

  /art/runtime/arch/arm/
quick_method_frame_info_arm.h 55 return RoundUp((POPCOUNT(ArmCalleeSaveCoreSpills(type)) /* gprs */ +
56 POPCOUNT(ArmCalleeSaveFpSpills(type)) /* fprs */ +
68 (POPCOUNT(ArmCalleeSaveCoreSpills(type)) +
69 POPCOUNT(ArmCalleeSaveFpSpills(type))) * kArmPointerSize;
74 POPCOUNT(ArmCalleeSaveCoreSpills(type)) * kArmPointerSize;
79 POPCOUNT(ArmCalleeSaveCoreSpills(type) & (-(1 << LR))) * kArmPointerSize;
context_arm.cc 47 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
48 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
  /art/runtime/arch/arm64/
quick_method_frame_info_arm64.h 23 #include "utils.h" // for POPCOUNT
75 return RoundUp((POPCOUNT(Arm64CalleeSaveCoreSpills(type)) /* gprs */ +
76 POPCOUNT(Arm64CalleeSaveFpSpills(type)) /* fprs */ +
88 (POPCOUNT(Arm64CalleeSaveCoreSpills(type)) +
89 POPCOUNT(Arm64CalleeSaveFpSpills(type))) * kArm64PointerSize;
94 POPCOUNT(Arm64CalleeSaveCoreSpills(type)) * kArm64PointerSize;
99 POPCOUNT(Arm64CalleeSaveCoreSpills(type) & (-(1 << LR))) * kArm64PointerSize;
context_arm64.cc 50 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
51 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
  /art/runtime/arch/x86/
quick_method_frame_info_x86.h 38 return RoundUp((POPCOUNT(X86CalleeSaveCoreSpills(type)) /* gprs */ +
context_x86.cc 42 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
  /art/runtime/arch/x86_64/
quick_method_frame_info_x86_64.h 53 return RoundUp((POPCOUNT(X86_64CalleeSaveCoreSpills(type)) /* gprs */ +
54 POPCOUNT(X86_64CalleeSaveFpSpills(type)) /* fprs */ +
context_x86_64.cc 45 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
46 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
  /art/runtime/arch/mips/
context_mips.cc 46 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
47 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
quick_method_frame_info_mips.h 42 return RoundUp((POPCOUNT(MipsCalleeSaveCoreSpills(type)) /* gprs */ +
  /art/runtime/base/
bit_vector.cc 263 count += POPCOUNT(storage_[word]);
389 count += POPCOUNT(storage[word]);
392 count += POPCOUNT(storage[word_end] & ~(0xffffffffu << partial_word_bits));
  /art/runtime/
vmap_table.h 108 CHECK_LT(vmap_offset - matches, static_cast<uint32_t>(POPCOUNT(spill_mask)));
stack.h 676 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
677 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
utils.h 274 static constexpr int POPCOUNT(T x) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
rtl.def 632 DEF_RTL_EXPR(POPCOUNT, "popcount", "e", RTX_UNARY)
    [all...]
genrtl.h 1093 gen_rtx_fmt_e (POPCOUNT, (MODE), (ARG0))
    [all...]
  /art/compiler/dex/quick/arm64/
int_arm64.cc     [all...]
  /art/runtime/mirror/
class.cc 287 CHECK_EQ((size_t)POPCOUNT(new_reference_offsets), count);
298 CHECK_EQ((size_t)POPCOUNT(new_reference_offsets),
  /external/qemu/target-i386/
ops_sse.h     [all...]
  /art/compiler/dex/quick/
codegen_util.cc     [all...]
  /art/compiler/utils/mips/
assembler_mips.cc 126 CHECK(IsInt(POPCOUNT(kBranchOffsetMask), offset)) << offset;
    [all...]
  /art/compiler/utils/arm/
assembler_arm32.cc     [all...]

Completed in 1638 milliseconds