| /NextBSD/contrib/llvm/lib/Support/ |
| HD | BlockFrequency.cpp | 28 BlockFrequency Freq(Frequency); in operator *() local 29 Freq *= Prob; in operator *() 30 return Freq; in operator *() 39 BlockFrequency Freq(Frequency); in operator /() local 40 Freq /= Prob; in operator /() 41 return Freq; in operator /() 44 BlockFrequency &BlockFrequency::operator+=(const BlockFrequency &Freq) { in operator +=() argument 45 uint64_t Before = Freq.Frequency; in operator +=() 46 Frequency += Freq.Frequency; in operator +=() 57 BlockFrequency Freq(Frequency); in operator +() local [all …]
|
| /NextBSD/contrib/libarchive/libarchive/ |
| HD | archive_ppmd7.c | 22 &p->BinSumm[Ppmd7Context_OneState(p->MinContext)->Freq - 1][p->PrevSuccess + \ 339 s->Freq = 1; in RestartModel() 407 upState.Freq = ONE_STATE(c)->Freq; in CreateSuccessors() 413 cf = s->Freq - 1; in CreateSuccessors() 415 … upState.Freq = (Byte)(1 + ((2 * cf <= s0) ? (5 * cf > s0) : ((2 * cf + 3 * s0 - 1) / (2 * s0)))); in CreateSuccessors() 455 if (p->FoundState->Freq < MAX_FREQ / 4 && p->MinContext->Suffix != 0) in UpdateModel() 462 if (s->Freq < 32) in UpdateModel() 463 s->Freq++; in UpdateModel() 471 if (s[0].Freq >= s[-1].Freq) in UpdateModel() 477 if (s->Freq < MAX_FREQ - 9) in UpdateModel() [all …]
|
| HD | archive_ppmd_private.h | 125 Byte Freq; member
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | SpillPlacement.cpp | 235 uint64_t Freq = Entry.getFrequency(); in setThreshold() local 236 uint64_t Scaled = (Freq >> 13) + bool(Freq & (1 << 12)); in setThreshold() 245 BlockFrequency Freq = BlockFrequencies[I->Number]; in addConstraints() local 251 nodes[ib].addBias(Freq, I->Entry); in addConstraints() 258 nodes[ob].addBias(Freq, I->Exit); in addConstraints() 267 BlockFrequency Freq = BlockFrequencies[*I]; in addPrefSpill() local 269 Freq += Freq; in addPrefSpill() 274 nodes[ib].addBias(Freq, PrefSpill); in addPrefSpill() 275 nodes[ob].addBias(Freq, PrefSpill); in addPrefSpill() 295 BlockFrequency Freq = BlockFrequencies[Number]; in addLinks() local [all …]
|
| HD | MachineBlockFrequencyInfo.cpp | 181 const BlockFrequency Freq) const { in printBlockFreq() 182 return MBFI ? MBFI->printBlockFreq(OS, Freq) : OS; in printBlockFreq()
|
| HD | MachineBlockPlacement.cpp | 1093 BlockFrequency Freq = MBFI->getBlockFreq(ChainBB); in buildCFGChains() local 1094 if (Freq < WeightedEntryFreq) in buildCFGChains() 1101 if (Freq < (LoopHeaderFreq * ColdProb)) in buildCFGChains() 1123 if (LayoutEdgeFreq <= (Freq * ColdProb)) in buildCFGChains()
|
| HD | RegAllocGreedy.cpp | 391 BlockFrequency Freq; member 397 HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg) in HintInfo() 398 : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {} in HintInfo() 2315 Cost += Info.Freq; in getBrokenHintFreq()
|
| HD | LiveIntervalAnalysis.cpp | 814 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent()); in getSpillWeight() local 816 return (isDef + isUse) * (Freq.getFrequency() * Scale); in getSpillWeight()
|
| /NextBSD/lib/libz/ |
| HD | trees.c | 415 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0; 416 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0; 417 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0; 419 s->dyn_ltree[END_BLOCK].Freq = 1; 444 (tree[n].Freq < tree[m].Freq || \ 445 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) 524 f = tree[n].Freq; 559 *(long)tree[m].Freq; 635 if (tree[n].Freq != 0) { 650 tree[node].Freq = 1; [all …]
|
| HD | 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++; \
|
| /NextBSD/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| HD | trees.c | 417 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0; 418 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0; 419 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0; 421 s->dyn_ltree[END_BLOCK].Freq = 1; 446 (tree[n].Freq < tree[m].Freq || \ 447 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) 526 f = tree[n].Freq; 561 *(long)tree[m].Freq; 637 if (tree[n].Freq != 0) { 652 tree[node].Freq = 1; [all …]
|
| HD | deflate.h | 73 #define Freq fc.freq macro 312 s->dyn_ltree[cc].Freq++; \ 321 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \ 322 s->dyn_dtree[d_code(dist)].Freq++; \
|
| /NextBSD/contrib/llvm/include/llvm/Support/ |
| HD | BlockFrequency.h | 29 BlockFrequency(uint64_t Freq = 0) : Frequency(Freq) { } in Frequency() argument 49 BlockFrequency &operator+=(const BlockFrequency &Freq); 50 const BlockFrequency operator+(const BlockFrequency &Freq) const;
|
| /NextBSD/sys/contrib/dev/ath/ath_hal/ar9300/ |
| HD | ar9330_11.ini | 1324 0x101479e, //Freq 2412 - (128 << 17) + 83870 1325 0x101d027, //Freq 2417 - (128 << 17) + 118823 1326 0x10258af, //Freq 2422 - (129 << 17) + 22703 1327 0x102e138, //Freq 2427 - (129 << 17) + 57656 1328 0x10369c0, //Freq 2432 - (129 << 17) + 92608 1329 0x103f249, //Freq 2437 - (129 << 17) + 127561 1330 0x1047ad1, //Freq 2442 - (130 << 17) + 31441 1331 0x105035a, //Freq 2447 - (130 << 17) + 66394 1332 0x1058be2, //Freq 2452 - (130 << 17) + 101346 1333 0x106146b, //Freq 2457 - (131 << 17) + 5227 [all …]
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | BlockFrequencyInfo.cpp | 170 printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const { in printBlockFreq() 171 return BFI ? BFI->printBlockFreq(OS, Freq) : OS; in printBlockFreq()
|
| HD | BlockFrequencyInfoImpl.cpp | 550 const BlockFrequency &Freq) const { in printBlockFreq() 551 Scaled64 Block(Freq.getFrequency(), 0); in printBlockFreq()
|
| /NextBSD/sys/libkern/ |
| HD | zlib.c | 331 #define Freq fc.freq macro 2182 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0; 2183 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0; 2184 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0; 2186 s->dyn_ltree[END_BLOCK].Freq = 1; 2211 (tree[n].Freq < tree[m].Freq || \ 2212 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) 2291 f = tree[n].Freq; 2326 *(long)tree[m].Freq; 2402 if (tree[n].Freq != 0) { [all …]
|
| /NextBSD/contrib/llvm/include/llvm/CodeGen/ |
| HD | MachineBlockFrequencyInfo.h | 58 raw_ostream &printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const;
|
| /NextBSD/contrib/llvm/include/llvm/Analysis/ |
| HD | BlockFrequencyInfo.h | 56 raw_ostream &printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const;
|
| HD | BlockFrequencyInfoImpl.h | 482 const BlockFrequency &Freq) const;
|
| /NextBSD/contrib/llvm/tools/llvm-bcanalyzer/ |
| HD | llvm-bcanalyzer.cpp | 679 if (unsigned Freq = Stats.CodeFreq[i].NumInstances) in AnalyzeBitcode() local 680 FreqPairs.push_back(std::make_pair(Freq, i)); in AnalyzeBitcode()
|