Home
last modified time | relevance | path

Searched refs:Freq (Results 1 – 25 of 40) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DBlockFrequency.cpp24 BlockFrequency Freq(Frequency); in operator *() local
25 Freq *= Prob; in operator *()
26 return Freq; in operator *()
35 BlockFrequency Freq(Frequency); in operator /() local
36 Freq /= Prob; in operator /()
37 return Freq; in operator /()
40 BlockFrequency &BlockFrequency::operator+=(BlockFrequency Freq) { in operator +=() argument
41 uint64_t Before = Freq.Frequency; in operator +=()
42 Frequency += Freq.Frequency; in operator +=()
51 BlockFrequency BlockFrequency::operator+(BlockFrequency Freq) const { in operator +()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSpillPlacement.cpp253 uint64_t Freq = Entry.getFrequency(); in setThreshold() local
254 uint64_t Scaled = (Freq >> 13) + bool(Freq & (1 << 12)); in setThreshold()
262 BlockFrequency Freq = BlockFrequencies[LB.Number]; in addConstraints() local
268 nodes[ib].addBias(Freq, LB.Entry); in addConstraints()
275 nodes[ob].addBias(Freq, LB.Exit); in addConstraints()
283 BlockFrequency Freq = BlockFrequencies[B]; in addPrefSpill() local
285 Freq += Freq; in addPrefSpill()
290 nodes[ib].addBias(Freq, PrefSpill); in addPrefSpill()
291 nodes[ob].addBias(Freq, PrefSpill); in addPrefSpill()
305 BlockFrequency Freq = BlockFrequencies[Number]; in addLinks() local
[all …]
H A DMachineBlockFrequencyInfo.cpp244 MachineBlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq()
249 return MBFI->getProfileCountFromFreq(F, Freq); in getProfileCountFromFreq()
279 const BlockFrequency Freq) const { in printBlockFreq()
280 return MBFI ? MBFI->printBlockFreq(OS, Freq) : OS; in printBlockFreq()
H A DMBFIWrapper.cpp51 const BlockFrequency Freq) const { in printBlockFreq()
52 return MBFI.printBlockFreq(OS, Freq); in printBlockFreq()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DBlockFrequency.h28 BlockFrequency(uint64_t Freq = 0) : Frequency(Freq) { } in Frequency() argument
48 BlockFrequency &operator+=(BlockFrequency Freq);
49 BlockFrequency operator+(BlockFrequency Freq) const;
52 BlockFrequency &operator-=(BlockFrequency Freq);
53 BlockFrequency operator-(BlockFrequency Freq) const;
/netbsd-src/external/gpl3/gdb/dist/zlib/
H A Dtrees.c413 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
414 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0;
415 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
417 s->dyn_ltree[END_BLOCK].Freq = 1;
442 (tree[n].Freq < tree[m].Freq || \
443 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
522 f = tree[n].Freq;
556 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq;
633 if (tree[n].Freq != 0) {
648 tree[node].Freq = 1;
[all …]
H A Ddeflate.h79 #define Freq fc.freq macro
326 s->dyn_ltree[cc].Freq++; \
336 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
337 s->dyn_dtree[d_code(dist)].Freq++; \
/netbsd-src/external/gpl3/binutils/dist/zlib/
H A Dtrees.c413 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
414 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0;
415 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
417 s->dyn_ltree[END_BLOCK].Freq = 1;
442 (tree[n].Freq < tree[m].Freq || \
443 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
522 f = tree[n].Freq;
556 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq;
633 if (tree[n].Freq != 0) {
648 tree[node].Freq = 1;
[all …]
H A Ddeflate.h79 #define Freq fc.freq macro
326 s->dyn_ltree[cc].Freq++; \
336 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
337 s->dyn_dtree[d_code(dist)].Freq++; \
/netbsd-src/external/gpl3/binutils.old/dist/zlib/
H A Dtrees.c413 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
414 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0;
415 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
417 s->dyn_ltree[END_BLOCK].Freq = 1;
442 (tree[n].Freq < tree[m].Freq || \
443 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
522 f = tree[n].Freq;
556 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq;
633 if (tree[n].Freq != 0) {
648 tree[node].Freq = 1;
[all …]
H A Ddeflate.h79 #define Freq fc.freq macro
326 s->dyn_ltree[cc].Freq++; \
336 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
337 s->dyn_dtree[d_code(dist)].Freq++; \
/netbsd-src/external/cddl/osnet/dist/uts/common/zmod/
H A Dtrees.c417 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 …]
H A Ddeflate.h73 #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++; \
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/powerplay/
H A Drenoir_ppt.h39 freq = table->SocClocks[dpm_level].Freq; \
42 freq = table->MemClocks[dpm_level].Freq; \
45 freq = table->DcfClocks[dpm_level].Freq; \
48 freq = table->FClocks[dpm_level].Freq; \
H A Damdgpu_renoir_ppt.c586 clock_table->DcfClocks[i].Freq = table->DcfClocks[i].Freq; in renoir_get_dpm_clock_table()
591 clock_table->SocClocks[i].Freq = table->SocClocks[i].Freq; in renoir_get_dpm_clock_table()
596 clock_table->FClocks[i].Freq = table->FClocks[i].Freq; in renoir_get_dpm_clock_table()
601 clock_table->MemClocks[i].Freq = table->MemClocks[i].Freq; in renoir_get_dpm_clock_table()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp218 BlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq()
221 return BFI->getProfileCountFromFreq(*getFunction(), Freq); in getProfileCountFromFreq()
229 void BlockFrequencyInfo::setBlockFreq(const BasicBlock *BB, uint64_t Freq) { in setBlockFreq() argument
231 BFI->setBlockFreq(BB, Freq); in setBlockFreq()
235 const BasicBlock *ReferenceBB, uint64_t Freq, in setBlockFreqAndScale() argument
239 APInt NewFreq(128, Freq); in setBlockFreqAndScale()
253 BFI->setBlockFreq(ReferenceBB, Freq); in setBlockFreqAndScale()
271 printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const { in printBlockFreq()
272 return BFI ? BFI->printBlockFreq(OS, Freq) : OS; in printBlockFreq()
H A DCallPrinter.cpp54 DenseMap<const Function *, uint64_t> Freq; member in llvm::CallGraphDOTInfo
75 Freq[&F] = localSumFreq; in CallGraphDOTInfo()
85 uint64_t getFreq(const Function *F) { return Freq[F]; } in getFreq()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfo.h76 Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
83 void setBlockFreq(const BasicBlock *BB, uint64_t Freq);
88 void setBlockFreqAndScale(const BasicBlock *ReferenceBB, uint64_t Freq,
97 raw_ostream &printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const;
H A DCFGPrinter.h258 uint64_t Freq = CFGInfo->getFreq(Node);
260 (uint64_t)(Freq * WeightPercent), Width);
288 uint64_t Freq = CFGInfo->getFreq(Node);
289 std::string Color = getHeatColor(Freq, CFGInfo->getMaxFreq());
290 std::string EdgeColor = (Freq <= (CFGInfo->getMaxFreq() / 2))
H A DBlockFrequencyInfoImpl.h529 uint64_t Freq,
533 void setBlockFreq(const BlockNode &Node, uint64_t Freq);
537 const BlockFrequency &Freq) const;
992 uint64_t Freq,
994 return BlockFrequencyInfoImplBase::getProfileCountFromFreq(F, Freq,
1002 void setBlockFreq(const BlockT *BB, uint64_t Freq);
1109 void BlockFrequencyInfoImpl<BT>::setBlockFreq(const BlockT *BB, uint64_t Freq) {
1111 BlockFrequencyInfoImplBase::setBlockFreq(getNode(BB), Freq);
1119 BlockFrequencyInfoImplBase::setBlockFreq(NewNode, Freq);
1451 const auto &Freq = Freqs[Node.Index];
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn21/
H A Damdgpu_dcn21_resource.c1368 {.Freq = 400, .Vol = 1},
1369 {.Freq = 483, .Vol = 1},
1370 {.Freq = 602, .Vol = 1},
1371 {.Freq = 738, .Vol = 1} },
1373 {.Freq = 300, .Vol = 1},
1374 {.Freq = 400, .Vol = 1},
1375 {.Freq = 400, .Vol = 1},
1376 {.Freq = 400, .Vol = 1} },
1378 {.Freq = 400, .Vol = 1},
1379 {.Freq = 800, .Vol = 1},
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/powerplay/inc/
H A Dsmu10_driver_if.h47 uint16_t Freq; member
107 uint32_t Freq; /* In MHz */ member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineBlockFrequencyInfo.h73 Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
92 raw_ostream &printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp148 uint32_t Freq = Iter->second; in computeDetailedSummary() local
149 CurrSum += (Count * Freq); in computeDetailedSummary()
150 CountsSeen += Freq; in computeDetailedSummary()
/netbsd-src/sys/net/
H A Dzlib.c347 #define Freq fc.freq macro
586 s->dyn_ltree[cc].Freq++; \
595 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
596 s->dyn_dtree[d_code(dist)].Freq++; \
2513 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0; in init_block()
2514 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0; in init_block()
2515 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0; in init_block()
2517 s->dyn_ltree[END_BLOCK].Freq = 1; in init_block()
2542 (tree[n].Freq < tree[m].Freq || \
2543 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
[all …]

12