/external/llvm/lib/Support/ |
H A D | BlockFrequency.cpp | 26 BlockFrequency Freq(Frequency); 27 Freq *= Prob; 28 return Freq; 37 BlockFrequency Freq(Frequency); 38 Freq /= Prob; 39 return Freq; 42 BlockFrequency &BlockFrequency::operator+=(BlockFrequency Freq) { argument 43 uint64_t Before = Freq.Frequency; 44 Frequency += Freq.Frequency; 53 BlockFrequency BlockFrequency::operator+(BlockFrequency Freq) cons 59 operator -=(BlockFrequency Freq) argument [all...] |
/external/lzma/C/ |
H A D | Ppmd.h | 37 UInt16 Summ; /* Freq */
38 Byte Shift; /* Speed of Freq change; low Shift is for fast change */
48 Byte Freq;
member in struct:__anon13479
|
/external/llvm/lib/Analysis/ |
H A D | BlockFrequencyInfo.cpp | 133 uint64_t Freq) { 135 BFI->setBlockFreq(BB, Freq); 155 printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const { 156 return BFI ? BFI->printBlockFreq(OS, Freq) : OS; 132 setBlockFreq(const BasicBlock *BB, uint64_t Freq) argument
|
H A D | BlockFrequencyInfoImpl.cpp | 534 uint64_t Freq) { 537 Freqs[Node.Index].Integer = Freq; 557 const BlockFrequency &Freq) const { 558 Scaled64 Block(Freq.getFrequency(), 0); 533 setBlockFreq(const BlockNode &Node, uint64_t Freq) argument
|
/external/llvm/lib/CodeGen/ |
H A D | SpillPlacement.cpp | 234 uint64_t Freq = Entry.getFrequency(); local 235 uint64_t Scaled = (Freq >> 13) + bool(Freq & (1 << 12)); 244 BlockFrequency Freq = BlockFrequencies[I->Number]; local 250 nodes[ib].addBias(Freq, I->Entry); 257 nodes[ob].addBias(Freq, I->Exit); 266 BlockFrequency Freq = BlockFrequencies[*I]; local 268 Freq += Freq; 273 nodes[ib].addBias(Freq, PrefSpil 294 BlockFrequency Freq = BlockFrequencies[Number]; local [all...] |
H A D | LiveIntervalAnalysis.cpp | 844 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent()); local 846 return (isDef + isUse) * (Freq.getFrequency() * Scale);
|
H A D | MachineBlockPlacement.cpp | 864 auto ScaleBlockFrequency = [](BlockFrequency Freq, 870 return Freq / BranchProbability(1, Scale); 1012 auto Freq = MBFI->getBlockFreq(LoopBB).getFrequency(); local 1013 if (Freq == 0 || LoopFreq.getFrequency() / Freq > LoopToColdBlockRatio) 1338 BlockFrequency Freq = MBFI->getBlockFreq(ChainBB); local 1339 if (Freq < WeightedEntryFreq) 1346 if (Freq < (LoopHeaderFreq * ColdProb)) 1368 if (LayoutEdgeFreq <= (Freq * ColdProb))
|
H A D | RegAllocGreedy.cpp | 404 BlockFrequency Freq; member in struct:__anon12262::RAGreedy::HintInfo 410 HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg) argument 411 : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {} 2336 Cost += Info.Freq;
|
/external/opencv3/3rdparty/zlib/ |
H A D | deflate.h | 76 #define Freq fc.freq macro 327 s->dyn_ltree[cc].Freq++; \ 336 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \ 337 s->dyn_dtree[d_code(dist)].Freq++; \
|
/external/pdfium/third_party/zlib_v128/ |
H A D | deflate.h | 76 #define Freq fc.freq macro 327 s->dyn_ltree[cc].Freq++; \ 336 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \ 337 s->dyn_dtree[d_code(dist)].Freq++; \
|
/external/zlib/src/ |
H A D | deflate.h | 76 #define Freq fc.freq macro 327 s->dyn_ltree[cc].Freq++; \ 336 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \ 337 s->dyn_dtree[d_code(dist)].Freq++; \
|
/external/llvm/include/llvm/Analysis/ |
H A D | BlockFrequencyInfoImpl.h | 480 void setBlockFreq(const BlockNode &Node, uint64_t Freq); 484 const BlockFrequency &Freq) const; 918 void setBlockFreq(const BlockT *BB, uint64_t Freq); 972 void BlockFrequencyInfoImpl<BT>::setBlockFreq(const BlockT *BB, uint64_t Freq) { argument 974 BlockFrequencyInfoImplBase::setBlockFreq(getNode(BB), Freq); local 982 BlockFrequencyInfoImplBase::setBlockFreq(NewNode, Freq);
|