Searched defs:Freq (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Support/
H A DBlockFrequency.cpp28 BlockFrequency Freq(Frequency);
29 Freq *= Prob;
30 return Freq;
39 BlockFrequency Freq(Frequency);
40 Freq /= Prob;
41 return Freq;
44 BlockFrequency &BlockFrequency::operator+=(const BlockFrequency &Freq) { argument
45 uint64_t Before = Freq.Frequency;
46 Frequency += Freq.Frequency;
57 BlockFrequency Freq(Frequenc
[all...]
/external/lzma/C/
H A DPpmd.h35 UInt16 Summ; /* Freq */
36 Byte Shift; /* Speed of Freq change; low Shift is for fast change */
46 Byte Freq; member in struct:__anon11537
/external/llvm/lib/CodeGen/
H A DSpillPlacement.cpp235 uint64_t Freq = Entry.getFrequency(); local
236 uint64_t Scaled = (Freq >> 13) + bool(Freq & (1 << 12));
245 BlockFrequency Freq = BlockFrequencies[I->Number]; local
251 nodes[ib].addBias(Freq, I->Entry);
258 nodes[ob].addBias(Freq, I->Exit);
267 BlockFrequency Freq = BlockFrequencies[*I]; local
269 Freq += Freq;
274 nodes[ib].addBias(Freq, PrefSpil
295 BlockFrequency Freq = BlockFrequencies[Number]; local
[all...]
H A DMachineBlockPlacement.cpp1093 BlockFrequency Freq = MBFI->getBlockFreq(ChainBB); local
1094 if (Freq < WeightedEntryFreq)
1101 if (Freq < (LoopHeaderFreq * ColdProb))
1123 if (LayoutEdgeFreq <= (Freq * ColdProb))
H A DLiveIntervalAnalysis.cpp814 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent()); local
816 return (isDef + isUse) * (Freq.getFrequency() * Scale);
H A DRegAllocGreedy.cpp391 BlockFrequency Freq; member in struct:__anon10468::RAGreedy::HintInfo
397 HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg) argument
398 : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {}
2304 Cost += Info.Freq;
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Ddeflate.h76 #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 Ddeflate.h76 #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++; \

Completed in 190 milliseconds