Home
last modified time | relevance | path

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

12345678910>>...20

/external/llvm-project/llvm/include/llvm/ADT/
DArrayRef.h298 class LLVM_NODISCARD MutableArrayRef : public ArrayRef<T> {
304 /*implicit*/ MutableArrayRef() = default;
307 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() function
310 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function
313 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function
317 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function
320 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function
324 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function
329 /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr) in MutableArrayRef() function
334 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DArrayRef.h300 class LLVM_NODISCARD MutableArrayRef : public ArrayRef<T> {
306 /*implicit*/ MutableArrayRef() = default;
309 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() function
312 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function
315 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function
319 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function
322 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function
326 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function
331 /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr) in MutableArrayRef() function
336 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DArrayRef.h283 class LLVM_NODISCARD MutableArrayRef : public ArrayRef<T> {
290 /*implicit*/ MutableArrayRef() : ArrayRef<T>() {} in MutableArrayRef() function
293 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() function
296 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function
299 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function
303 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function
306 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function
310 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function
315 /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr) in MutableArrayRef() function
320 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
[all …]
/external/llvm/include/llvm/ADT/
DArrayRef.h226 class MutableArrayRef : public ArrayRef<T> {
233 /*implicit*/ MutableArrayRef() : ArrayRef<T>() {} in MutableArrayRef() function
236 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() function
239 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function
242 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function
246 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function
249 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function
253 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function
258 /*implicit*/ LLVM_CONSTEXPR MutableArrayRef(T (&Arr)[N]) in MutableArrayRef() function
282 MutableArrayRef<T> slice(size_t N) const { in slice()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
Dcompile_mlir_util.h41 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
75 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
96 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
117 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
127 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
140 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
152 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
167 llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DProcessorTrace.h85 llvm::MutableArrayRef<uint8_t> GetAuxBuffer();
86 llvm::MutableArrayRef<uint8_t> GetDataBuffer();
106 Status ReadPerfTraceAux(llvm::MutableArrayRef<uint8_t> &buffer,
109 Status ReadPerfTraceData(llvm::MutableArrayRef<uint8_t> &buffer,
134 static void ReadCyclicBuffer(llvm::MutableArrayRef<uint8_t> &dst,
135 llvm::MutableArrayRef<uint8_t> src,
DProcessorTrace.cpp164 llvm::MutableArrayRef<uint8_t> ProcessorTraceMonitor::GetDataBuffer() { in GetDataBuffer()
168 return MutableArrayRef<uint8_t>( in GetDataBuffer()
175 llvm::MutableArrayRef<uint8_t> ProcessorTraceMonitor::GetAuxBuffer() { in GetAuxBuffer()
179 return MutableArrayRef<uint8_t>(m_mmap_aux.get(), m_mmap_meta->aux_size); in GetAuxBuffer()
285 ProcessorTraceMonitor::ReadPerfTraceAux(llvm::MutableArrayRef<uint8_t> &buffer, in ReadPerfTraceAux()
335 ProcessorTraceMonitor::ReadPerfTraceData(llvm::MutableArrayRef<uint8_t> &buffer, in ReadPerfTraceData()
383 llvm::MutableArrayRef<uint8_t> &dst, llvm::MutableArrayRef<uint8_t> src, in ReadCyclicBuffer()
409 llvm::SmallVector<MutableArrayRef<uint8_t>, 2> parts = { in ReadCyclicBuffer()
/external/llvm-project/libc/utils/CPP/
DArrayRef.h64 template <typename T> class MutableArrayRef : public ArrayRef<T> {
69 template <size_t N> MutableArrayRef(Array<T, N> &Arr) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
72 explicit MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function
75 MutableArrayRef(T *data, size_t length) : ArrayRef<T>(data, length) {} in MutableArrayRef() function
78 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function
82 constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
/external/clang/include/clang/AST/
DOpenMPClause.h130 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs()
131 return MutableArrayRef<Expr *>( in getVarRefs()
156 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
1215 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
1216 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in getPrivateCopies()
1243 typedef MutableArrayRef<Expr *>::iterator private_copies_iterator;
1314 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
1315 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in getPrivateCopies()
1328 MutableArrayRef<Expr *> getInits() { in getInits()
1329 return MutableArrayRef<Expr *>(getPrivateCopies().end(), varlist_size()); in getInits()
[all …]
/external/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
DRegisterFile.h168 MutableArrayRef<unsigned> UsedPhysRegs);
173 MutableArrayRef<unsigned> FreedPhysRegs);
194 void addRegisterWrite(WriteRef Write, MutableArrayRef<unsigned> UsedPhysRegs);
204 MutableArrayRef<unsigned> FreedPhysRegs);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
DRegisterFile.h169 MutableArrayRef<unsigned> UsedPhysRegs);
174 MutableArrayRef<unsigned> FreedPhysRegs);
195 void addRegisterWrite(WriteRef Write, MutableArrayRef<unsigned> UsedPhysRegs);
205 MutableArrayRef<unsigned> FreedPhysRegs);
/external/llvm/include/llvm/ProfileData/Coverage/
DCoverageMappingWriter.h43 MutableArrayRef<CounterMappingRegion> MappingRegions;
48 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
53 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/external/llvm-project/mlir/include/mlir/Transforms/
DRegionUtils.h40 void visitUsedValuesDefinedAbove(MutableArrayRef<Region> regions,
50 void getUsedValuesDefinedAbove(MutableArrayRef<Region> regions,
57 LogicalResult simplifyRegions(MutableArrayRef<Region> regions);
DLoopUtils.h102 tilePerfectlyNested(MutableArrayRef<AffineForOp> input,
111 MutableArrayRef<AffineForOp> input, ArrayRef<Value> tileSizes,
131 unsigned permuteLoops(MutableArrayRef<AffineForOp> inputNest,
242 void coalesceLoops(MutableArrayRef<scf::ForOp> loops);
308 separateFullTiles(MutableArrayRef<AffineForOp> nest,
DGreedyPatternRewriteDriver.h49 applyPatternsAndFoldGreedily(MutableArrayRef<Region> regions,
55 applyPatternsAndFoldGreedily(MutableArrayRef<Region> regions,
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h213 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs()
214 return MutableArrayRef<Expr *>( in getVarRefs()
227 using varlist_iterator = MutableArrayRef<Expr *>::iterator;
2195 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
2196 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in getPrivateCopies()
2222 using private_copies_iterator = MutableArrayRef<Expr *>::iterator;
2304 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
2305 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in getPrivateCopies()
2318 MutableArrayRef<Expr *> getInits() { in getInits()
2319 return MutableArrayRef<Expr *>(getPrivateCopies().end(), varlist_size()); in getInits()
[all …]
/external/llvm-project/debuginfo-tests/llvm-prettyprinters/gdb/
Dllvm-support.cpp17 llvm::MutableArrayRef<int> MutableArrayRef(Array);
61 MutableArrayRef[0]; in main()
/external/clang/include/clang/Sema/
DOwnership.h262 typedef MutableArrayRef<Expr*> MultiExprArg;
263 typedef MutableArrayRef<Stmt*> MultiStmtArg;
264 typedef MutableArrayRef<ParsedTemplateArgument> ASTTemplateArgsPtr;
265 typedef MutableArrayRef<ParsedType> MultiTypeArg;
266 typedef MutableArrayRef<TemplateParameterList*> MultiTemplateParamsArg;
/external/llvm-project/clang/include/clang/Sema/
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 *>;
/external/llvm/lib/Transforms/IPO/
DWholeProgramDevirt.cpp134 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocBefore, in setBeforeReturnValues()
151 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocAfter, in setAfterReturnValues()
274 MutableArrayRef<VirtualCallSite> CallSites);
276 MutableArrayRef<VirtualCallTarget> TargetsForSlot,
280 MutableArrayRef<VirtualCallSite> CallSites);
283 MutableArrayRef<VirtualCallSite> CallSites);
284 bool tryVirtualConstProp(MutableArrayRef<VirtualCallTarget> TargetsForSlot,
396 MutableArrayRef<VirtualCallSite> CallSites) { in trySingleImplDevirt()
417 MutableArrayRef<VirtualCallTarget> TargetsForSlot, in tryEvaluateFunctionsWithArgs()
445 MutableArrayRef<VirtualCallSite> CallSites) { in tryUniformRetValOpt()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMappingWriter.h43 MutableArrayRef<CounterMappingRegion> MappingRegions;
48 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/external/llvm-project/llvm/include/llvm/ProfileData/Coverage/
DCoverageMappingWriter.h44 MutableArrayRef<CounterMappingRegion> MappingRegions;
49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DBinaryByteStream.h92 MutableBinaryByteStream(MutableArrayRef<uint8_t> Data, in MutableBinaryByteStream()
126 MutableArrayRef<uint8_t> data() const { return Data; } in data()
129 MutableArrayRef<uint8_t> Data;
200 MutableArrayRef<uint8_t> data() { return Data; } in data()
212 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/external/llvm-project/llvm/include/llvm/Support/
DBinaryByteStream.h92 MutableBinaryByteStream(MutableArrayRef<uint8_t> Data, in MutableBinaryByteStream()
126 MutableArrayRef<uint8_t> data() const { return Data; } in data()
129 MutableArrayRef<uint8_t> Data;
200 MutableArrayRef<uint8_t> data() { return Data; } in data()
212 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DAssumptionCache.h131 MutableArrayRef<WeakTrackingVH> assumptions() { in assumptions()
138 MutableArrayRef<WeakTrackingVH> assumptionsFor(const Value *V) { in assumptionsFor()
144 return MutableArrayRef<WeakTrackingVH>(); in assumptionsFor()

12345678910>>...20