Searched refs:argIndices (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/mlir/lib/IR/ |
D | FunctionSupport.cpp | 35 ArrayRef<unsigned> argIndices, in eraseFunctionArguments() argument 47 iterateIndicesExcept(originalNumArgs, argIndices, [&](unsigned i) { in eraseFunctionArguments() 69 entry.eraseArguments(argIndices); in eraseFunctionArguments()
|
D | Block.cpp | 180 void Block::eraseArguments(ArrayRef<unsigned> argIndices) { in eraseArguments() argument 182 for (unsigned i : argIndices) in eraseArguments()
|
D | BuiltinTypes.cpp | 134 FunctionType::getWithoutArgsAndResults(ArrayRef<unsigned> argIndices, in getWithoutArgsAndResults() argument 138 if (!argIndices.empty()) { in getWithoutArgsAndResults() 140 iterateIndicesExcept(originalNumArgs, argIndices, [&](unsigned i) { in getWithoutArgsAndResults()
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | FunctionSupport.h | 76 void eraseFunctionArguments(Operation *op, ArrayRef<unsigned> argIndices, 212 FunctionType getTypeWithoutArgsAndResults(ArrayRef<unsigned> argIndices, in getTypeWithoutArgsAndResults() argument 214 return getType().getWithoutArgsAndResults(argIndices, resultIndices); in getTypeWithoutArgsAndResults() 268 void eraseArguments(ArrayRef<unsigned> argIndices) { in eraseArguments() argument 270 Type newType = getTypeWithoutArgsAndResults(argIndices, {}); in eraseArguments() 271 ::mlir::impl::eraseFunctionArguments(this->getOperation(), argIndices, in eraseArguments()
|
D | Block.h | 108 void eraseArguments(ArrayRef<unsigned> argIndices);
|
D | BuiltinTypes.h | 266 FunctionType getWithoutArgsAndResults(ArrayRef<unsigned> argIndices,
|
/external/clang/utils/ABITest/ |
D | TypeGen.py | 400 argIndices = getNthTuple(N+1, self.maxSize+1, self.typeGen.cardinality) 401 retIndex,argIndices = argIndices[0],argIndices[1:] 405 argIndices = getNthTuple(N, self.maxSize, self.typeGen.cardinality) 406 args = map(self.typeGen.get, argIndices)
|
/external/llvm-project/clang/utils/ABITest/ |
D | TypeGen.py | 402 argIndices = getNthTuple(N+1, self.maxSize+1, self.typeGen.cardinality) 403 retIndex,argIndices = argIndices[0],argIndices[1:] 407 argIndices = getNthTuple(N, self.maxSize, self.typeGen.cardinality) 408 args = [self.typeGen.get(i) for i in argIndices]
|