/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/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/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());
|
/external/chromium_org/third_party/smhasher/src/ |
Types.cpp | 89 if(popcount(b) < 16) { b = 0; popfail++; } 90 if(popcount(b) > 16) { b = 0; popfail++; } 101 if(popcount(c) < 3) { b = 0; bitfail++; break; } 102 if(popcount(c) > 5) { b = 0; bitfail++; break; }
|
/system/media/audio_utils/tests/ |
primitives_tests.cpp | 278 65536 / popcount(dst_mask)); 293 EXPECT_EQ(memcmp(u16ary, u16ref, 555 * sizeof(u16ref[0]) * popcount(dst_mask)), 0); 301 65536 / popcount(dst_mask)); 311 65536 / popcount(src_mask)); 322 uint32_t src_channels = popcount(src_mask); 356 65536 / popcount(dst_mask)); 373 EXPECT_EQ(memcmp(u24ary, u24ref, 555 * sizeof(u24ref[0]) * popcount(dst_mask)), 0); 381 65536 / popcount(dst_mask)); 392 65536 / popcount(src_mask));
|
/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/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());
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
AudioSystemLegacy.h | 319 static uint32_t popCount(uint32_t u) { 320 return popcount(u); 325 if ((popcount(device) == 1) && ((device & ~DEVICE_OUT_ALL) == 0)) 331 if ((popcount(device) == 1) && ((device & ~DEVICE_IN_ALL) == 0))
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
sbitmap.h | 87 unsigned char *popcount; /* Population count. */ member in struct:simple_bitmap_def 113 gcc_checking_assert (! map->popcount); 123 gcc_checking_assert (! map->popcount); 216 free (map->popcount);
|
/external/openfst/src/extensions/ngram/ |
bitmap-index.cc | 134 uint32 popcount = 0; local 148 popcount += block_popcount; 149 primary_index_.push_back(popcount);
|
/external/proguard/src/proguard/optimize/evaluation/ |
EvaluationSimplifier.java | [all...] |
EvaluationShrinker.java | 734 int popCount = instruction.stackPopCount(clazz); 735 if (popCount > 0) 743 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++) [all...] |
/external/llvm/test/Transforms/LoopIdiom/X86/ |
popcnt.ll | 4 ;int popcount(unsigned long long a) { 16 define i32 @popcount(i64 %a) nounwind uwtable readnone ssp { 36 ;int popcount(unsigned long long a, int mydata1, int mydata2) {
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/ |
trie_map.h | 102 mTrieMap->popCount(bitmapEntry.getBitmap()), bitmapEntry.getTableIndex()); 322 AK_FORCE_INLINE int popCount(const uint32_t bitmap, const int index) const { 323 return popCount(bitmap & ((1 << index) - 1)); 327 AK_FORCE_INLINE int popCount(const uint32_t bitmap) const {
|
trie_map.cpp | 131 iterationState->emplace_back(popCount(entry.getBitmap()), entry.getTableIndex()); 224 const int entryIndex = bitmapEntry.getTableIndex() + popCount(bitmapEntry.getBitmap(), label); 284 const int entryIndex = mapIndex + popCount(bitmap, label); 361 const int entryCount = popCount(bitmap); 366 const int newEntryIndexInTable = popCount(bitmap, label);
|
/system/core/include/cutils/ |
bitops.h | 103 static inline int popcount(unsigned int x) function
|
/system/media/audio_utils/ |
primitives.c | 17 #include <cutils/bitops.h> /* for popcount() */ 295 uint32_t src_channels = popcount(src_mask); 302 memcpy(dst, src, sample_size * popcount(dst_mask) * count); 410 return n + popcount(ormask & dst_mask);
|
/hardware/qcom/audio/legacy/alsa_sound/ |
ALSAStreamOps.cpp | 82 // use emulated popcount optimization 84 static inline uint32_t popCount(uint32_t u) 101 if (mHandle->channels != popCount(*channels))
|
/system/core/include/system/ |
audio.h | [all...] |
/external/openfst/src/include/fst/extensions/ngram/ |
bitmap-index.h | 171 // The primary index contains the running popcount of all blocks 175 // The secondary index contains the running popcount of the associated
|