HomeSort by: relevance | last modified time | path
    Searched refs:countPopulation (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Sanitizers.h 63 unsigned countPopulation() const {
66 total += llvm::countPopulation(Val);
76 return countPopulation() == 1;
  /src/external/apache2/llvm/dist/llvm/lib/MCA/
InstrBuilder.cpp 101 unsigned popcntA = countPopulation(A.first);
102 unsigned popcntB = countPopulation(B.first);
117 assert(countPopulation(A.first) > 1 && "Expected a group!");
124 if (countPopulation(A.first) == 1) {
136 if (countPopulation(B.first) > 1)
160 if (countPopulation(RPC.first) > 1 && !RPC.second.isReserved()) {
163 uint64_t MaxResourceUnits = countPopulation(Mask);
164 if (RPC.second.NumUnits > countPopulation(Mask)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
LaneBitmask.h 76 return countPopulation(Mask);
SubtargetFeature.h 101 Count += countPopulation(B);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h 52 return Zero.countPopulation() + One.countPopulation() == getBitWidth();
270 return One.countPopulation();
275 return getBitWidth() - Zero.countPopulation();
MathExtras.h 564 /// Ex. countPopulation(0xF000F000) = 8
567 inline unsigned countPopulation(T Value) {
  /src/external/apache2/llvm/dist/llvm/lib/MCA/HardwareUnits/
ResourceManager.cpp 68 BufferSize(Desc.BufferSize), IsAGroup(countPopulation(ResourceMask) > 1) {
82 countPopulation(ReadyMask) >= NumUnits;
315 assert((countPopulation(R.first) > 1) && "Expected a group!");
332 if (countPopulation(RR.first) == 1)
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonShuffler.h 60 return (countPopulation(A.getUnits()) < countPopulation(B.getUnits()));
HexagonShuffler.cpp 50 HexagonBid(unsigned B) { Bid = B ? MAX / countPopulation(B) : 0; }
102 unsigned Ctpop = countPopulation(Units);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/HardwareUnits/
ResourceManager.h 250 return isAResourceGroup() ? 1U : countPopulation(ResourceSizeMask);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
GlobalsStream.cpp 160 NumBuckets += countPopulation(B);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSchedule.cpp 142 double Temp = countPopulation(I->getUnits()) * 1.0 / I->getCycles();
  /src/external/apache2/llvm/dist/llvm/lib/MCA/Stages/
ExecuteStage.cpp 278 SmallVector<unsigned, 4> BufferIDs(countPopulation(UsedBuffers), 0);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIRegisterInfo.h 315 return countPopulation(Odd);
AMDGPUInstCombineIntrinsic.cpp 984 DemandedElts &= (1 << countPopulation(DMaskVal)) - 1;
1001 unsigned NewNumElts = DemandedElts.countPopulation();
SILoadStoreOptimizer.cpp 293 return countPopulation(DMaskImm);
1534 assert("No overlaps" && (countPopulation(CI.DMask | Paired.DMask) == Width));
1547 assert((countPopulation(CI.DMask | Paired.DMask) == CI.Width + Paired.Width) &&
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 95 Bytes <= 16 && countPopulation(Bytes) <= 2 :
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BitVector.h 157 NumBits += countPopulation(Bit);
SmallBitVector.h 200 return countPopulation(Bits);
SparseBitVector.h 122 NumBits += countPopulation(Bits[i]);
APInt.h 232 /// out-of-line slow case for countPopulation
1724 /// This function is an APInt version of the countPopulation functions
1728 unsigned countPopulation() const {
1730 return llvm::countPopulation(U.VAL);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 673 Imm = CurDAG->getTargetConstant(ImmValue.countPopulation() - 1, SDLoc(N),
705 Imm = CurDAG->getTargetConstant(ImmValue.countPopulation() - 1, SDLoc(N),
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.h 73 Count += countPopulation(W);
CodeGenSchedule.cpp 374 unsigned LhsCountPopulation = Lhs.countPopulation();
375 unsigned RhsCountPopulation = Rhs.countPopulation();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Disassembler/
AMDGPUDisassembler.cpp 745 unsigned DstSize = IsGather4 ? 4 : std::max(countPopulation(DMask), 1u);

Completed in 88 milliseconds

1 2 3