/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | ArrayRef.h | 291 class LLVM_NODISCARD MutableArrayRef : public ArrayRef<T> { 297 /*implicit*/ MutableArrayRef() = default; 300 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() function 303 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function 306 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function 310 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function 313 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function 317 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function 322 /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr) in MutableArrayRef() function 327 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function [all …]
|
D | BitVector.h | 82 MutableArrayRef<BitWord> Bits; // Actual bits. 150 Bits = MutableArrayRef<BitWord>(); in BitVector() 160 RHS.Bits = MutableArrayRef<BitWord>(); in BitVector() 734 RHS.Bits = MutableArrayRef<BitWord>(); 830 MutableArrayRef<BitWord> allocate(size_t NumWords) { in allocate() 833 return MutableArrayRef<BitWord>(RawBits, NumWords); in allocate() 873 Bits = MutableArrayRef<BitWord>(NewBits, NewCapacity); in grow() 877 void init_words(MutableArrayRef<BitWord> B, bool t) { in init_words()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | ArrayRef.h | 283 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/ |
D | ArrayRef.h | 226 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/clang/include/clang/AST/ |
D | OpenMPClause.h | 130 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 …]
|
D | DeclOpenMP.h | 56 MutableArrayRef<Expr *> getVars() { in getVars() 57 return MutableArrayRef<Expr *>(getTrailingObjects<Expr *>(), NumVars); in getVars() 69 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | RegisterFile.h | 118 llvm::MutableArrayRef<unsigned> UsedPhysRegs); 123 llvm::MutableArrayRef<unsigned> FreedPhysRegs); 140 llvm::MutableArrayRef<unsigned> UsedPhysRegs, 146 llvm::MutableArrayRef<unsigned> FreedPhysRegs,
|
D | RegisterFile.cpp | 112 MutableArrayRef<unsigned> UsedPhysRegs) { in allocatePhysRegs() 127 MutableArrayRef<unsigned> FreedPhysRegs) { in freePhysRegs() 142 MutableArrayRef<unsigned> UsedPhysRegs, in addRegisterWrite() 203 MutableArrayRef<unsigned> FreedPhysRegs, in removeRegisterWrite()
|
/external/llvm/include/llvm/ProfileData/Coverage/ |
D | CoverageMappingWriter.h | 43 MutableArrayRef<CounterMappingRegion> MappingRegions; 48 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter() 53 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
|
/external/clang/include/clang/Sema/ |
D | Ownership.h | 262 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/lib/Transforms/IPO/ |
D | WholeProgramDevirt.cpp | 134 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-7.0/llvm/include/llvm/Support/ |
D | BinaryByteStream.h | 93 MutableBinaryByteStream(MutableArrayRef<uint8_t> Data, in MutableBinaryByteStream() 127 MutableArrayRef<uint8_t> data() const { return Data; } in data() 130 MutableArrayRef<uint8_t> Data; 201 MutableArrayRef<uint8_t> data() { return Data; } in data() 213 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | AssumptionCache.h | 128 MutableArrayRef<WeakTrackingVH> assumptions() { in assumptions() 135 MutableArrayRef<WeakTrackingVH> assumptionsFor(const Value *V) { in assumptionsFor() 141 return MutableArrayRef<WeakTrackingVH>(); in assumptionsFor()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/ |
D | CoverageMappingWriter.h | 45 MutableArrayRef<CounterMappingRegion> MappingRegions; 50 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
|
/external/llvm/unittests/DebugInfo/PDB/ |
D | MappedBlockStreamTest.cpp | 49 DiscontiguousFile(ArrayRef<uint32_t> Blocks, MutableArrayRef<uint8_t> Data) in DiscontiguousFile() 81 MutableArrayRef<uint8_t> Data; 304 MutableArrayRef<uint8_t> Data(DataBytes); in TEST() 390 MutableArrayRef<uint8_t> DestData(DestDataBytes); in TEST() 394 MutableArrayRef<uint8_t> SrcData(SrcDataBytes); in TEST() 422 MutableArrayRef<uint8_t> DestData(DestDataBytes); in TEST() 426 MutableArrayRef<uint8_t> SrcData(SrcDataBytes); in TEST()
|
/external/llvm/include/llvm/DebugInfo/PDB/Raw/ |
D | MappedBlockStream.h | 53 Error readBytes(uint32_t Offset, MutableArrayRef<uint8_t> Buffer) const; 60 typedef MutableArrayRef<uint8_t> CacheEntry;
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/MSF/ |
D | MappedBlockStreamTest.cpp | 32 DiscontiguousStream(ArrayRef<uint32_t> Blocks, MutableArrayRef<uint8_t> Data) in DiscontiguousStream() 74 MutableArrayRef<uint8_t> Data; 313 MutableArrayRef<uint8_t> Data(DataBytes); in TEST() 405 MutableArrayRef<uint8_t> DestData(DestDataBytes); in TEST() 409 MutableArrayRef<uint8_t> SrcData(SrcDataBytes); in TEST() 437 MutableArrayRef<uint8_t> DestData(DestDataBytes); in TEST() 441 MutableArrayRef<uint8_t> SrcData(SrcDataBytes); in TEST() 473 MutableArrayRef<uint8_t> Data(DataBytes); in TEST()
|
/external/llvm/include/llvm/Transforms/IPO/ |
D | WholeProgramDevirt.h | 28 template <typename T> class MutableArrayRef; variable 204 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets, 211 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
|
/external/clang/include/clang/Basic/ |
D | LLVM.h | 32 template<typename T> class MutableArrayRef; variable 67 using llvm::MutableArrayRef;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/IPO/ |
D | WholeProgramDevirt.h | 28 template <typename T> class MutableArrayRef; variable 208 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets, 215 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCParser/ |
D | MCAsmLexer.h | 117 MutableArrayRef<AsmToken> Buf(Tok); 127 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
D | WebAssemblyAsmBackend.cpp | 48 const MCValue &Target, MutableArrayRef<char> Data, 104 MutableArrayRef<char> Data, in applyFixup()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | WholeProgramDevirt.cpp | 198 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocBefore, in setBeforeReturnValues() 215 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocAfter, in setAfterReturnValues() 464 bool trySingleImplDevirt(MutableArrayRef<VirtualCallTarget> TargetsForSlot, 470 void tryICallBranchFunnel(MutableArrayRef<VirtualCallTarget> TargetsForSlot, 475 MutableArrayRef<VirtualCallTarget> TargetsForSlot, 480 bool tryUniformRetValOpt(MutableArrayRef<VirtualCallTarget> TargetsForSlot, 512 MutableArrayRef<VirtualCallTarget> TargetsForSlot, 519 bool tryVirtualConstProp(MutableArrayRef<VirtualCallTarget> TargetsForSlot, 775 MutableArrayRef<VirtualCallTarget> TargetsForSlot, in trySingleImplDevirt() 824 MutableArrayRef<VirtualCallTarget> TargetsForSlot, VTableSlotInfo &SlotInfo, in tryICallBranchFunnel() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/MCTargetDesc/ |
D | SystemZMCAsmBackend.cpp | 55 const MCValue &Target, MutableArrayRef<char> Data, 100 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/MCTargetDesc/ |
D | BPFAsmBackend.cpp | 31 const MCValue &Target, MutableArrayRef<char> Data, 72 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
|