Home
last modified time | relevance | path

Searched refs:MutableArrayRef (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DArrayRef.h28 template<typename T> class LLVM_NODISCARD MutableArrayRef; variable
182 return MutableArrayRef<T>(Buff, Length); in copy()
321 /*implicit*/ MutableArrayRef() = default;
341 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function
377 return MutableArrayRef<T>(this->data() + N, M); in slice()
381 MutableArrayRef<T> slice(size_t N) const { in slice()
462 this->MutableArrayRef<T>::operator=(Other);
463 Other.MutableArrayRef<T>::operator=(MutableArrayRef<T>());
540 return MutableArrayRef<T>(data, length); in makeMutableArrayRef()
569 MutableArrayRef<T> makeMutableArrayRef(const MutableArrayRef<T> &Vec) { in makeMutableArrayRef()
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Transforms/
H A DRegionUtils.h41 void visitUsedValuesDefinedAbove(MutableArrayRef<Region> regions,
51 void getUsedValuesDefinedAbove(MutableArrayRef<Region> regions,
60 MutableArrayRef<Region> regions);
65 MutableArrayRef<Region> regions);
70 MutableArrayRef<Region> regions);
/llvm-project-15.0.7/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h218 MutableArrayRef<unsigned> UsedPhysRegs);
223 MutableArrayRef<unsigned> FreedPhysRegs);
255 void addRegisterWrite(WriteRef Write, MutableArrayRef<unsigned> UsedPhysRegs);
265 MutableArrayRef<unsigned> FreedPhysRegs);
278 bool tryEliminateMoveOrSwap(MutableArrayRef<WriteState> Writes,
279 MutableArrayRef<ReadState> Reads);
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/
H A DLoopUtils.h104 tilePerfectlyNested(MutableArrayRef<AffineForOp> input,
112 MutableArrayRef<AffineForOp> input, ArrayRef<Value> tileSizes,
132 unsigned permuteLoops(MutableArrayRef<AffineForOp> inputNest,
229 LogicalResult coalesceLoops(MutableArrayRef<AffineForOp> loops);
289 separateFullTiles(MutableArrayRef<AffineForOp> nest,
/llvm-project-15.0.7/libc/test/src/__support/CPP/
H A Dstringstream_test.cpp13 using __llvm_libc::cpp::MutableArrayRef;
18 MutableArrayRef<char> bufref(reinterpret_cast<void *>(buf), 256); in TEST()
34 MutableArrayRef<char> bufref(reinterpret_cast<void *>(buf), BUFSIZE); in TEST()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h214 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs()
215 return MutableArrayRef<Expr *>( in getVarRefs()
925 MutableArrayRef<Expr *> getSizesRefs() { in getSizesRefs()
2637 MutableArrayRef<Expr *> getInits() { in getInits()
3929 MutableArrayRef<Expr *> getInits() { in getInits()
3937 MutableArrayRef<Expr *> getUpdates() { in getUpdates()
3945 MutableArrayRef<Expr *> getFinals() { in getFinals()
5215 return MutableArrayRef<ValueDecl *>( in getUniqueDeclsRef()
5240 return MutableArrayRef<unsigned>( in getDeclNumListsRef()
5264 return MutableArrayRef<unsigned>( in getComponentListSizesRef()
[all …]
H A DDeclOpenMP.h35 MutableArrayRef<OMPClause *> getClauses() { in getClauses()
124 MutableArrayRef<Expr *> getVars() { in getVars()
138 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
324 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
433 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
487 MutableArrayRef<Expr *> getVars() { in getVars()
501 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
505 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/llvm-prettyprinters/gdb/
H A Dllvm-support.cpp17 llvm::MutableArrayRef<int> MutableArrayRef(Array);
69 dont_strip(MutableArrayRef); in main()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DOwnership.h272 using MultiExprArg = MutableArrayRef<Expr *>;
273 using MultiStmtArg = MutableArrayRef<Stmt *>;
274 using ASTTemplateArgsPtr = MutableArrayRef<ParsedTemplateArgument>;
275 using MultiTypeArg = MutableArrayRef<ParsedType>;
276 using MultiTemplateParamsArg = MutableArrayRef<TemplateParameterList *>;
/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DUtils.h140 MutableArrayRef<int64_t> getDividend(unsigned i) { in getDividend()
219 MutableArrayRef<int64_t> dividend,
241 int64_t normalizeRange(MutableArrayRef<int64_t> range);
246 void normalizeDiv(MutableArrayRef<int64_t> num, int64_t &denom);
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingWriter.h44 MutableArrayRef<CounterMappingRegion> MappingRegions;
49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/llvm-project-15.0.7/mlir/include/mlir/Tools/PDLL/AST/
H A DNodes.h184 MutableArrayRef<Stmt *> getChildren() { in getChildren()
274 MutableArrayRef<Expr *> getReplExprs() { in getReplExprs()
398 MutableArrayRef<Expr *> getArguments() { in getArguments()
522 MutableArrayRef<Expr *> getOperands() { in getOperands()
530 MutableArrayRef<Expr *> getResultTypes() { in getResultTypes()
581 MutableArrayRef<Expr *> getElements() { in getElements()
863 MutableArrayRef<VariableDecl *> getInputs() { in getInputs()
876 MutableArrayRef<VariableDecl *> getResults() { in getResults()
1070 MutableArrayRef<VariableDecl *> getInputs() { in getInputs()
1079 MutableArrayRef<VariableDecl *> getResults() { in getResults()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DBinaryByteStream.h91 MutableBinaryByteStream(MutableArrayRef<uint8_t> Data, in MutableBinaryByteStream()
125 MutableArrayRef<uint8_t> data() const { return Data; } in data()
128 MutableArrayRef<uint8_t> Data;
197 MutableArrayRef<uint8_t> data() { return Data; } in data()
209 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DUtils.cpp24 static void normalizeDivisionByGCD(MutableArrayRef<int64_t> dividend, in normalizeDivisionByGCD()
92 MutableArrayRef<int64_t> expr, in getDivRepr()
155 unsigned eqInd, MutableArrayRef<int64_t> expr, in getDivRepr()
218 MutableArrayRef<int64_t> dividend, unsigned &divisor) { in computeSingleVarRepr()
326 int64_t presburger::normalizeRange(MutableArrayRef<int64_t> range) { in normalizeRange()
335 void presburger::normalizeDiv(MutableArrayRef<int64_t> num, int64_t &denom) { in normalizeDiv()
/llvm-project-15.0.7/clang/include/clang/Tooling/Transformer/
H A DTransformer.h53 llvm::MutableArrayRef<AtomicChange> Changes;
58 llvm::MutableArrayRef<AtomicChange> Changes;
72 Expected<llvm::MutableArrayRef<AtomicChange>> Changes)>;
200 RewriteResult.Changes = llvm::MutableArrayRef<AtomicChange>(Changes);
/llvm-project-15.0.7/lld/COFF/
H A DDebugTypes.h73 void remapRecord(MutableArrayRef<uint8_t> rec,
100 bool remapTypesInSymbolRecord(MutableArrayRef<uint8_t> rec);
102 void remapTypesInTypeRecord(MutableArrayRef<uint8_t> rec);
/llvm-project-15.0.7/mlir/lib/IR/
H A DOperationSupport.cpp177 MutableArrayRef<std::unique_ptr<Region>> regions) in OperationState()
190 MutableArrayRef<std::unique_ptr<Region>> regions) in OperationState()
212 MutableArrayRef<std::unique_ptr<Region>> regions) { in addRegions()
242 MutableArrayRef<OpOperand> storageOperands = resize(owner, values.size()); in setOperands()
255 MutableArrayRef<OpOperand> storageOperands = getOperands(); in setOperands()
282 MutableArrayRef<OpOperand> operands = getOperands(); in eraseOperands()
296 MutableArrayRef<OpOperand> operands = getOperands(); in eraseOperands()
315 MutableArrayRef<OpOperand> detail::OperandStorage::resize(Operation *owner, in resize()
319 MutableArrayRef<OpOperand> origOperands = getOperands(); in resize()
334 return MutableArrayRef<OpOperand>(opBegin, newSize); in resize()
[all …]
/llvm-project-15.0.7/libc/src/__support/CPP/
H A DArrayRef.h128 struct MutableArrayRef : public internal::ArrayRefBase<T> { struct
139 MutableArrayRef(void *Data, size_t Length) in MutableArrayRef() argument
143 template <size_t N> MutableArrayRef(Array<T, N> &Arr) : Impl(Arr.Data, N) {} in MutableArrayRef() argument
H A Dstringstream.h25 MutableArrayRef<char> data;
44 constexpr StringStream(const MutableArrayRef<char> &buf) : data(buf) {} in StringStream()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DAssumptionCache.h150 MutableArrayRef<ResultElem> assumptions() { in assumptions()
157 MutableArrayRef<ResultElem> assumptionsFor(const Value *V) { in assumptionsFor()
163 return MutableArrayRef<ResultElem>(); in assumptionsFor()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DJTFootprintReduction.cpp69 MutableArrayRef<MCInst>(&*BB.begin(), &Inst + 1), in checkOpportunities()
102 MutableArrayRef<MCInst>(&*BB.begin(), &Inst + 1), -1) || in checkOpportunities()
106 MutableArrayRef<MCInst>(&*BB.begin(), &Inst + 1), -1)) { in checkOpportunities()
145 MutableArrayRef<MCInst>(&*BB.begin(), &*Inst + 1), in tryOptimizeNonPIC()
187 *BC.MRI, *BC.MIB, MutableArrayRef<MCInst>(&*BB.begin(), &*Inst + 1), in tryOptimizePIC()
/llvm-project-15.0.7/libc/benchmarks/automemcpy/include/automemcpy/
H A DResultAnalyzer.h100 void fillScores(MutableArrayRef<FunctionData> Functions);
104 void castVotes(MutableArrayRef<FunctionData> Functions);
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-private-types.h68 llvm::MutableArrayRef<uint8_t> mutable_data(uint8_t *context_base) const { in mutable_data()
69 return llvm::MutableArrayRef<uint8_t>(context_base + byte_offset, in mutable_data()
/llvm-project-15.0.7/mlir/lib/Pass/
H A DPassDetail.h44 MutableArrayRef<OpPassManager> getPassManagers() { return mgrs; } in getPassManagers()
51 MutableArrayRef<SmallVector<OpPassManager, 1>> getParallelPassManagers() { in getParallelPassManagers()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DDataBuffer.h111 llvm::MutableArrayRef<uint8_t> GetData() { in GetData()
112 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize()); in GetData()

12345678910>>...15