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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 148 static void combineWeight(Weight &W, const Weight &OtherW) {
149 assert(OtherW.TargetNode.isValid());
151 W = OtherW;
154 assert(W.Type == OtherW.Type);
155 assert(W.TargetNode == OtherW.TargetNode);
156 assert(OtherW.Amount && "Expected non-zero weight");
157 if (W.Amount > W.Amount + OtherW.Amount)
161 W.Amount += OtherW.Amount;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorCombine.cpp 1105 int ThisW = 0, OtherW = 1;
1114 Work[OtherW].clear();
1120 Work[OtherW].push_back(Joined);
1122 std::swap(ThisW, OtherW);
1130 Value *Total = Work[OtherW].front();

Completed in 27 milliseconds