| /freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 526 OverlapStats &Overlap, in overlap() argument 550 Overlap.Overlap.ValueCounts[ValueKind] += Score; in overlap() 551 FuncLevelOverlap.Overlap.ValueCounts[ValueKind] += FuncLevelScore; in overlap() 557 OverlapStats &Overlap, in overlapValueProfData() argument 593 Overlap.addOneMismatch(FuncLevelOverlap.Test); in overlap() 599 overlapValueProfData(Kind, Other, Overlap, FuncLevelOverlap); in overlap() 606 Overlap.Base.CountSum, Overlap.Test.CountSum); in overlap() 609 Overlap.Overlap.CountSum += Score; in overlap() 610 Overlap.Overlap.NumEntries += 1; in overlap() 618 FuncLevelOverlap.Overlap.CountSum = FuncScore; in overlap() [all …]
|
| H A D | InstrProfWriter.cpp | 192 OverlapStats &Overlap, in overlapRecord() argument 199 Overlap.addOneUnique(FuncLevelOverlap.Test); in overlapRecord() 203 Overlap.Overlap.NumEntries += 1; in overlapRecord() 212 Overlap.addOneMismatch(FuncLevelOverlap.Test); in overlapRecord() 222 Dest.overlap(Other, Overlap, FuncLevelOverlap, ValueCutoff); in overlapRecord()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | CoalescingBitVector.h | 182 for (IntervalT Overlap : Overlaps) variable 183 insert(Overlap.first, Overlap.second); 196 for (IntervalT Overlap : Overlaps) { in intersectWithComplement() local 198 std::tie(OlapStart, OlapStop) = Overlap; in intersectWithComplement() 422 for (IntervalT Overlap : Overlaps) { in getNonOverlappingParts() local 424 std::tie(OlapStart, OlapStop) = Overlap; in getNonOverlappingParts()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfWriter.h | 111 void overlapRecord(NamedInstrProfRecord &&Other, OverlapStats &Overlap,
|
| H A D | InstrProf.h | 618 CountSumOrPercent Overlap; member 687 OverlapStats &Overlap, OverlapStats &FuncLevelOverlap); 780 void overlap(InstrProfRecord &Other, OverlapStats &Overlap, 785 OverlapStats &Overlap,
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineInstr.h | 1451 bool isDead = false, bool Overlap = false, 1458 bool Overlap = false, 1460 int Idx = findRegisterDefOperandIdx(Reg, isDead, Overlap, TRI); 1466 bool Overlap = false, 1469 Reg, isDead, Overlap, TRI);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Core/ |
| H A D | Replacement.cpp | 305 auto Overlap = [](const Replacement &R1, const Replacement &R2) -> bool { in add() local 311 if (!Overlap(R, *I)) { in add() 329 if (!Overlap(R, *I)) in add()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 211 OverlapStats &Overlap, in overlapInput() argument 228 WC->Writer.overlapRecord(std::move(I), Overlap, FuncOverlap, FuncFilter); in overlapInput() 1005 OverlapStats Overlap; in overlapInstrProfile() local 1006 Error E = Overlap.accumulateCounts(BaseFilename, TestFilename, IsCS); in overlapInstrProfile() 1009 if (Overlap.Base.CountSum < 1.0f) { in overlapInstrProfile() 1013 if (Overlap.Test.CountSum < 1.0f) { in overlapInstrProfile() 1018 overlapInput(BaseFilename, TestFilename, &Context, Overlap, FuncFilter, OS, in overlapInstrProfile() 1020 Overlap.dump(OS); in overlapInstrProfile()
|
| /freebsd-13.1/tools/tools/ath/athprom/ |
| H A D | eeprom-14 | 57 | pdGain Overlap $pdGainOverlap dB |
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonExpandCondsets.cpp | 1143 bool Overlap = L1.overlaps(L2); in coalesceRegisters() local 1146 << (Overlap ? "overlap" : "disjoint") << ")\n " in coalesceRegisters() 1151 if (Overlap) in coalesceRegisters()
|
| H A D | HexagonLoopIdiomRecognition.cpp | 2066 bool Overlap = false; in processCopyingStore() local 2101 Overlap = true; in processCopyingStore() 2104 if (!Overlap) { in processCopyingStore() 2149 bool RuntimeCheck = (Overlap || DestVolatile); in processCopyingStore() 2309 LLVM_DEBUG(dbgs() << " Formed " << (Overlap ? "memmove: " : "memcpy: ") in processCopyingStore()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIShrinkInstructions.cpp | 404 LaneBitmask Overlap = TRI.getSubRegIndexLaneMask(SubReg) & in instAccessReg() local 406 if (Overlap.any()) in instAccessReg()
|
| H A D | SIWholeQuadMode.cpp | 392 LaneBitmask Overlap = (UseLanes & OpLanes); in markDefs() local 395 HasDef |= Overlap.any(); in markDefs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMLoadStoreOptimizer.cpp | 1918 bool Overlap = false; in LoadStoreMultipleOpti() local 1920 Overlap = (Base == Reg); in LoadStoreMultipleOpti() 1921 if (!Overlap) { in LoadStoreMultipleOpti() 1924 Overlap = true; in LoadStoreMultipleOpti() 1931 if (!Overlap) { in LoadStoreMultipleOpti()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDecl.cpp | 1947 AggValueSlot::Overlap_t Overlap = AggValueSlot::MayOverlap; in EmitExprAsInit() local 1949 Overlap = AggValueSlot::DoesNotOverlap; in EmitExprAsInit() 1951 Overlap = getOverlapForFieldInit(FD); in EmitExprAsInit() 1956 AggValueSlot::IsNotAliased, Overlap)); in EmitExprAsInit()
|
| H A D | CGClass.cpp | 2132 AggValueSlot::Overlap_t Overlap, in EmitCXXConstructorCall() argument 2158 EmitAggregateCopyCtor(DestLVal, SrcLVal, Overlap); in EmitCXXConstructorCall()
|
| H A D | CodeGenFunction.h | 2828 AggValueSlot::Overlap_t Overlap,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineInstr.cpp | 1041 MachineInstr::findRegisterDefOperandIdx(Register Reg, bool isDead, bool Overlap, in findRegisterDefOperandIdx() argument 1048 if (isPhys && Overlap && MO.isRegMask() && MO.clobbersPhysReg(Reg)) in findRegisterDefOperandIdx() 1055 if (Overlap) in findRegisterDefOperandIdx()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 2469 bool Overlap = false; in CheckDag() local 2474 Overlap = MI->Pos < M.End; in CheckDag() 2478 if (!Overlap) { in CheckDag()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 1247 OVERLAPPED *Overlap) { 1253 if (::ReadFile(FileHandle, Buf.data(), BytesToRead, &BytesRead, Overlap)) 1263 return readNativeFileImpl(FileHandle, Buf, /*Overlap=*/nullptr);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CStringChecker.cpp | 526 SVal Overlap = in CheckOverlap() local 529 Overlap.getAs<DefinedOrUnknownSVal>(); in CheckOverlap()
|
| /freebsd-13.1/share/misc/ |
| H A D | pci_vendors | 5544 102b 0880 P-256 Edge Overlap Controller
|