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

  /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DifferenceEngine.cpp 9 // This header defines the implementation of the LLVM difference
112 /// A function-scope difference engine.
334 bool Difference = false;
347 } else if (Complain || !Difference) {
350 Difference = true;
353 if (!Difference)
358 Difference = true;
360 return Difference;
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
ppevvmath.h 311 fInt Difference;
313 Difference.full = X.full - Y.full;
315 return Difference;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 357 const ssize_t Difference = FS.Width - FS.Str.size();
358 if (Difference > 0) {
363 RightIndent = Difference;
366 LeftIndent = Difference;
369 LeftIndent = Difference / 2;
370 RightIndent = Difference - LeftIndent;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IRBuilder.cpp 959 Value *Difference = CreateSub(LHS_int, RHS_int);
960 return CreateExactSDiv(Difference,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopFuse.cpp 700 /// have the same TripCount. The second is the difference in the two
730 "determining the difference between trip counts\n");
746 Optional<unsigned> Difference = None;
750 Difference = Diff;
753 dbgs() << "Difference is less than 0. FC1 (second loop) has more "
757 LLVM_DEBUG(dbgs() << "Difference in loop trip count is: " << Difference
760 return {false, Difference};
859 // pair), and if not check the difference in the tripcounts between
860 // the loops (second value of pair). The difference is not equal t
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 1261 /// Difference for two sample units in a matched function according to the
1266 double &Difference, MatchStatus Status);
1269 /// Difference for unmatched callees that only present in one profile in a
1273 double &Difference, MatchStatus Status);
1387 SampleOverlapStats &FuncOverlap, double &Difference, MatchStatus Status) {
1402 Difference +=
1409 double &Difference, MatchStatus Status) {
1417 Difference, Status);
1422 Difference, Status);
1433 double Difference = 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 1487 ConstantRange Difference = DominatingCR.difference(CR);
1490 if (Difference.isEmptySet())
1511 if (const APInt *NeC = Difference.getSingleElement())

Completed in 30 milliseconds