HomeSort by: relevance | last modified time | path
    Searched defs:Overlap (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Replacement.cpp 205 "Existing replacements must not overlap.");
261 // replacement cannot overlap.
298 // `I` is the smallest iterator (after `R`) whose entry cannot overlap.
305 auto Overlap = [](const Replacement &R1, const Replacement &R2) -> bool {
309 // If the previous entry does not overlap, we know that entries before it
310 // can also not overlap.
311 if (!Overlap(R, *I)) {
328 // If `I` doesn't overlap with `R`, don't merge it.
329 if (!Overlap(R, *I))
456 // subsequent replacements as long as they overlap. See more details in th
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIShrinkInstructions.cpp 399 LaneBitmask Overlap = TRI.getSubRegIndexLaneMask(SubReg) &
401 if (Overlap.any())
SIWholeQuadMode.cpp 388 // Compute lanes defined and overlap with use
392 LaneBitmask Overlap = (UseLanes & OpLanes);
395 HasDef |= Overlap.any();
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h 610 // Function level or program level overlap information.
617 // Overlap lap score. Should be in range of [0.0f to 1.0f].
618 CountSumOrPercent Overlap;
652 // This is used to filter the functions whose overlap information
685 /// Compute the overlap b/w this record and Input record.
686 void overlap(InstrProfValueSiteRecord &Input, uint32_t ValueKind,
687 OverlapStats &Overlap, OverlapStats &FuncLevelOverlap);
779 /// Compute the overlap b/w this IntrprofRecord and Other.
780 void overlap(InstrProfRecord &Other, OverlapStats &Overlap,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonLoopIdiomRecognition.cpp 2066 bool Overlap = false;
2101 Overlap = true;
2104 if (!Overlap) {
2149 bool RuntimeCheck = (Overlap || DestVolatile);
2309 LLVM_DEBUG(dbgs() << " Formed " << (Overlap ? "memmove: " : "memcpy: ")
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp 1944 AggValueSlot::Overlap_t Overlap = AggValueSlot::MayOverlap;
1946 Overlap = AggValueSlot::DoesNotOverlap;
1948 Overlap = getOverlapForFieldInit(FD);
1953 AggValueSlot::IsNotAliased, Overlap));
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 2434 // Search for a match that doesn't overlap a previous match in this
2469 bool Overlap = false;
2472 // !Overlap => New match has no overlap and is before this old match.
2473 // Overlap => New match overlaps this old match.
2474 Overlap = MI->Pos < M.End;
2478 if (!Overlap) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 206 /// Computer the overlap b/w profile BaseFilename and TestFileName,
207 /// and store the program level result to Overlap.
210 OverlapStats &Overlap,
227 WC->Writer.overlapRecord(std::move(I), Overlap, FuncOverlap, FuncFilter);
971 /// Computer the overlap b/w profile BaseFilename and profile TestFilename.
980 OverlapStats Overlap;
981 Error E = Overlap.accumulateCounts(BaseFilename, TestFilename, IsCS);
984 if (Overlap.Base.CountSum < 1.0f) {
988 if (Overlap.Test.CountSum < 1.0f) {
993 overlapInput(BaseFilename, TestFilename, &Context, Overlap, FuncFilter, OS
    [all...]

Completed in 73 milliseconds