Home
last modified time | relevance | path

Searched refs:startIndex (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DPybindUtils.h234 intptr_t linearIndex = index * step + startIndex;
266 startIndex + start * step, sliceLength, step * extraStep));
270 explicit Sliceable(intptr_t startIndex, intptr_t length, intptr_t step)
271 : startIndex(startIndex), length(length), step(step) {
360 intptr_t startIndex;
H A DIRAffine.cpp381 PyAffineMapExprList(const PyAffineMap &map, intptr_t startIndex = 0, in PyAffineMapExprList() argument
383 : Sliceable(startIndex, in PyAffineMapExprList()
399 PyAffineMapExprList slice(intptr_t startIndex, intptr_t length, in slice() argument
401 return PyAffineMapExprList(affineMap, startIndex, length, step); in slice()
459 PyIntegerSetConstraintList(const PyIntegerSet &set, intptr_t startIndex = 0, in PyIntegerSetConstraintList() argument
461 : Sliceable(startIndex, in PyIntegerSetConstraintList()
476 PyIntegerSetConstraintList slice(intptr_t startIndex, intptr_t length, in slice() argument
478 return PyIntegerSetConstraintList(set, startIndex, length, step); in slice()
H A DIRCore.cpp1988 intptr_t startIndex = 0, intptr_t length = -1, in PyBlockArgumentList() argument
1990 : Sliceable(startIndex, in PyBlockArgumentList()
2018 PyBlockArgumentList slice(intptr_t startIndex, intptr_t length, in slice() argument
2020 return PyBlockArgumentList(operation, block, startIndex, length, step); in slice()
2035 PyOpOperandList(PyOperationRef operation, intptr_t startIndex = 0, in PyOpOperandList() argument
2037 : Sliceable(startIndex, in PyOpOperandList()
2076 return PyOpOperandList(operation, startIndex, length, step); in slice()
2090 PyOpResultList(PyOperationRef operation, intptr_t startIndex = 0, in PyOpResultList() argument
2092 : Sliceable(startIndex, in PyOpResultList()
2118 PyOpResultList slice(intptr_t startIndex, intptr_t length, intptr_t step) { in slice() argument
[all …]
/llvm-project-15.0.7/mlir/include/mlir/AsmParser/
H A DAsmParserState.h51 : startIndex(index), definition(loc) {} in ResultGroupDefinition()
54 unsigned startIndex; member
/llvm-project-15.0.7/mlir/lib/IR/
H A DOperationSupport.cpp402 uint32_t startIndex = in dereference() local
404 return OperandRange(object.first + startIndex, *(sizeData.begin() + index)); in dereference()
524 uint32_t startIndex = in dereference() local
527 startIndex, *(sizeData.begin() + index), in dereference()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DBinaryStreamTest.cpp38 uint64_t S = startIndex(Offset); in readBytes()
57 uint64_t S = startIndex(Offset); in readLongestContiguousChunk()
70 uint64_t S = startIndex(Offset); in writeBytes()
86 uint64_t startIndex(uint64_t Offset) const { in startIndex() function in __anone0c2a0990111::BrokenStream
91 return (startIndex(Offset) + Size - 1) % Data.size(); in endIndex()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h77 SlotIndex startIndex() const { return Segments.start(); } in startIndex() function
/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DAsmParserState.cpp294 if (resultNo >= resultGroup.startIndex) { in addUses()
/llvm-project-15.0.7/mlir/lib/Tools/mlir-lsp-server/
H A DMLIRServer.cpp451 unsigned resultStart = result.startIndex; in findHover()
453 : op.resultGroups[i + 1].startIndex; in findHover()
/llvm-project-15.0.7/mlir/lib/Rewrite/
H A DByteCode.cpp1719 unsigned startIndex = in executeGetOperandsResults() local
1721 values = values.slice(startIndex, *std::next(segments.begin(), index)); in executeGetOperandsResults()
1723 LLVM_DEBUG(llvm::dbgs() << " * Extracting range[" << startIndex << ", " in executeGetOperandsResults()
/llvm-project-15.0.7/lld/ELF/
H A DSyntheticSections.h331 size_t startIndex = 0; member
H A DSyntheticSections.cpp968 got.startIndex = &got == primGot ? 0 : index; in build()
1091 return getVA() + gots[f->mipsGotIndex].startIndex * config->wordsize + 0x7ff0; in getGp()
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DSTLExtras.h1282 indexed_accessor_range(BaseT base, ptrdiff_t startIndex, ptrdiff_t count)
1285 std::make_pair(base, startIndex), count) {}