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

  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheckImpl.h 365 std::unique_ptr<ExpressionAST> RightOp)
368 RightOperand = std::move(RightOp);
FileCheck.cpp 375 Expected<ExpressionValue> RightOp = RightOperand->eval();
379 if (!LeftOp || !RightOp) {
383 if (!RightOp)
384 Err = joinErrors(std::move(Err), RightOp.takeError());
388 return EvalBinop(*LeftOp, *RightOp);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 8465 SDValue RightOp = ShiftOperand.getOperand(1);
8469 if ((!(IsSignExt || IsZeroExt)) || LeftOp.getOpcode() != RightOp.getOpcode())
8473 EVT WideVT2 = RightOp.getValueType();
8481 if (NarrowVT != RightOp.getOperand(0).getValueType())
8506 RightOp.getOperand(0));

Completed in 63 milliseconds