Home
last modified time | relevance | path

Searched refs:otherOperands (Results 1 – 4 of 4) sorted by relevance

/external/antlr/tool/src/main/java/org/antlr/analysis/
DSemanticContext.java387 Set<SemanticContext> otherOperands = commutative.operands; in equals() local
388 if (operands.size() != otherOperands.size()) in equals()
391 return operands.containsAll(otherOperands); in equals()
398 Set<SemanticContext> otherOperands = ((CommutativePredicate)not.ctx).operands; in equals() local
399 if (operands.size() != otherOperands.size()) in equals()
403 for (SemanticContext context : otherOperands) { in equals()
/external/llvm-project/mlir/lib/Dialect/Linalg/Transforms/
DBufferize.cpp160 auto otherOperands = linalgOp.getAssumedNonShapedOperands(); in finalizeBufferAllocation() local
161 newOperands.append(otherOperands.begin(), otherOperands.end()); in finalizeBufferAllocation()
/external/llvm-project/mlir/include/mlir/Dialect/Affine/IR/
DAffineOps.h472 void normalize(AffineMap *otherMap, SmallVectorImpl<Value> *otherOperands);
/external/llvm-project/mlir/lib/Dialect/Affine/IR/
DAffineOps.cpp691 SmallVectorImpl<Value> *otherOperands) { in normalize() argument
692 AffineApplyNormalizer other(*otherMap, *otherOperands); in normalize()
695 otherOperands->reserve(reorderedDims.size() + concatenatedSymbols.size()); in normalize()
696 otherOperands->assign(reorderedDims.begin(), reorderedDims.end()); in normalize()
697 otherOperands->append(concatenatedSymbols.begin(), concatenatedSymbols.end()); in normalize()