HomeSort by: relevance | last modified time | path
    Searched refs:Coefficients (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
TypeSize.h 44 /// where the scale is implicit, so only the coefficients are encoded.
54 std::array<ScalarTy, Dimensions> Coefficients;
58 std::copy(Values.begin(), Values.end(), Coefficients.begin());
64 LHS.Coefficients[I] += RHS.Coefficients[I];
70 LHS.Coefficients[I] -= RHS.Coefficients[I];
75 for (auto &C : LHS.Coefficients)
103 return std::equal(Coefficients.begin(), Coefficients.end()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstraintElimination.cpp 116 SmallVector<int64_t, 8> Coefficients;
118 ConstraintTy(SmallVector<int64_t, 8> Coefficients)
119 : Coefficients(Coefficients) {}
121 unsigned size() const { return Coefficients.size(); }
192 // Build result constraint, by first adding all coefficients from A and then
193 // subtracting all coefficients from B.
252 CS.addVariableRowFill(C.Coefficients);
374 // Check if all coefficients of new indices are 0 after building the
379 int64_t Last = R[0].Coefficients.pop_back_val()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceAnalysis.cpp 2324 // Examine Src coefficients.
2328 const SCEV *Coefficients = Src;
2330 dyn_cast<SCEVAddRecExpr>(Coefficients)) {
2339 Coefficients = AddRec->getStart();
2341 const SCEV *SrcConst = Coefficients;
2343 // Examine Dst coefficients.
2347 Coefficients = Dst;
2349 dyn_cast<SCEVAddRecExpr>(Coefficients)) {
2358 Coefficients = AddRec->getStart();
2360 const SCEV *DstConst = Coefficients;
    [all...]

Completed in 46 milliseconds