| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | ArrayRef.h | 297 /*implicit*/ MutableArrayRef() = default; 317 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function 353 return MutableArrayRef<T>(this->data() + N, M); in slice() 357 MutableArrayRef<T> slice(size_t N) const { in slice() 362 MutableArrayRef<T> drop_front(size_t N = 1) const { 367 MutableArrayRef<T> drop_back(size_t N = 1) const { 394 MutableArrayRef<T> take_back(size_t N = 1) const { 438 this->MutableArrayRef<T>::operator=(Other); 439 Other.MutableArrayRef<T>::operator=(MutableArrayRef<T>()); 503 MutableArrayRef<T> makeMutableArrayRef(T &OneElt) { in makeMutableArrayRef() [all …]
|
| H A D | BitVector.h | 82 MutableArrayRef<BitWord> Bits; // Actual bits. 150 Bits = MutableArrayRef<BitWord>(); in BitVector() 160 RHS.Bits = MutableArrayRef<BitWord>(); in BitVector() 751 RHS.Bits = MutableArrayRef<BitWord>(); 847 MutableArrayRef<BitWord> allocate(size_t NumWords) { in allocate() 850 return MutableArrayRef<BitWord>(RawBits, NumWords); in allocate() 890 Bits = MutableArrayRef<BitWord>(NewBits, NewCapacity); in grow() 894 void init_words(MutableArrayRef<BitWord> B, bool t) { in init_words()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 185 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs() 186 return MutableArrayRef<Expr *>( in getVarRefs() 1585 MutableArrayRef<Expr *> getInits() { in getInits() 1980 MutableArrayRef<Expr *> getPrivates() { in getPrivates() 2673 MutableArrayRef<Expr *> getInits() { in getInits() 2681 MutableArrayRef<Expr *> getUpdates() { in getUpdates() 2689 MutableArrayRef<Expr *> getFinals() { in getFinals() 3643 return MutableArrayRef<ValueDecl *>( in getUniqueDeclsRef() 3668 return MutableArrayRef<unsigned>( in getDeclNumListsRef() 3692 return MutableArrayRef<unsigned>( in getComponentListSizesRef() [all …]
|
| H A D | DeclOpenMP.h | 57 MutableArrayRef<Expr *> getVars() { in getVars() 58 return MutableArrayRef<Expr *>(getTrailingObjects<Expr *>(), NumVars); in getVars() 70 typedef MutableArrayRef<Expr *>::iterator varlist_iterator; 271 MutableArrayRef<OMPClause *> getClauses() { in getClauses() 272 return MutableArrayRef<OMPClause *>(getTrailingObjects<OMPClause *>(), in getClauses() 287 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
|
| /freebsd-12.1/contrib/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | RegisterFile.h | 169 MutableArrayRef<unsigned> UsedPhysRegs); 174 MutableArrayRef<unsigned> FreedPhysRegs); 195 void addRegisterWrite(WriteRef Write, MutableArrayRef<unsigned> UsedPhysRegs); 205 MutableArrayRef<unsigned> FreedPhysRegs);
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Ownership.h | 277 using MultiExprArg = MutableArrayRef<Expr *>; 278 using MultiStmtArg = MutableArrayRef<Stmt *>; 279 using ASTTemplateArgsPtr = MutableArrayRef<ParsedTemplateArgument>; 280 using MultiTypeArg = MutableArrayRef<ParsedType>; 281 using MultiTemplateParamsArg = MutableArrayRef<TemplateParameterList *>;
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A 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()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | DataBuffer.h | 88 llvm::MutableArrayRef<uint8_t> GetData() { in GetData() 89 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize()); in GetData()
|
| H A D | StringExtractor.h | 98 size_t GetHexBytes(llvm::MutableArrayRef<uint8_t> dest, 101 size_t GetHexBytesAvail(llvm::MutableArrayRef<uint8_t> dest);
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | AssumptionCache.h | 128 MutableArrayRef<WeakTrackingVH> assumptions() { in assumptions() 135 MutableArrayRef<WeakTrackingVH> assumptionsFor(const Value *V) { in assumptionsFor() 141 return MutableArrayRef<WeakTrackingVH>(); in assumptionsFor()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMappingWriter.h | 45 MutableArrayRef<CounterMappingRegion> MappingRegions; 50 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-private-types.h | 71 llvm::MutableArrayRef<uint8_t> mutable_data(uint8_t *context_base) const { in mutable_data() 72 return llvm::MutableArrayRef<uint8_t>(context_base + byte_offset, in mutable_data()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | LLVM.h | 33 template<typename T> class MutableArrayRef; variable 65 using llvm::MutableArrayRef;
|
| /freebsd-12.1/contrib/llvm/include/llvm/Transforms/IPO/ |
| H A D | WholeProgramDevirt.h | 28 template <typename T> class MutableArrayRef; variable 208 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets, 215 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyAsmBackend.cpp | 48 const MCValue &Target, MutableArrayRef<char> Data, 104 MutableArrayRef<char> Data, in applyFixup()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/MCParser/ |
| H A D | MCAsmLexer.h | 109 MutableArrayRef<AsmToken> Buf(Tok); 119 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBTrace.cpp | 30 llvm::MutableArrayRef<uint8_t> buffer(static_cast<uint8_t *>(buf), size); in GetTraceData() 47 llvm::MutableArrayRef<uint8_t> buffer(static_cast<uint8_t *>(buf), size); in GetMetaData()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/ |
| H A D | SystemZMCAsmBackend.cpp | 55 const MCValue &Target, MutableArrayRef<char> Data, 100 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
|
| /freebsd-12.1/contrib/llvm/lib/Target/BPF/MCTargetDesc/ |
| H A D | BPFAsmBackend.cpp | 31 const MCValue &Target, MutableArrayRef<char> Data, 72 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/IPO/ |
| H A D | WholeProgramDevirt.cpp | 199 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocBefore, in setBeforeReturnValues() 216 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocAfter, in setAfterReturnValues() 468 bool trySingleImplDevirt(MutableArrayRef<VirtualCallTarget> TargetsForSlot, 479 MutableArrayRef<VirtualCallTarget> TargetsForSlot, 484 bool tryUniformRetValOpt(MutableArrayRef<VirtualCallTarget> TargetsForSlot, 516 MutableArrayRef<VirtualCallTarget> TargetsForSlot, 523 bool tryVirtualConstProp(MutableArrayRef<VirtualCallTarget> TargetsForSlot, 793 MutableArrayRef<VirtualCallTarget> TargetsForSlot, in trySingleImplDevirt() 973 MutableArrayRef<VirtualCallTarget> TargetsForSlot, in tryEvaluateFunctionsWithArgs() 1012 MutableArrayRef<VirtualCallTarget> TargetsForSlot, CallSiteInfo &CSInfo, in tryUniformRetValOpt() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/Lanai/MCTargetDesc/ |
| H A D | LanaiAsmBackend.cpp | 53 const MCValue &Target, MutableArrayRef<char> Data, 97 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
|
| /freebsd-12.1/contrib/llvm/lib/Target/MSP430/MCTargetDesc/ |
| H A D | MSP430AsmBackend.cpp | 42 const MCValue &Target, MutableArrayRef<char> Data, 136 MutableArrayRef<char> Data, in applyFixup()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ |
| H A D | RegisterContextMinidump_x86_64.cpp | 20 static llvm::MutableArrayRef<uint8_t> getDestRegister(uint8_t *context, in getDestRegister() 44 llvm::MutableArrayRef<uint8_t> reg_dest = getDestRegister(context, reg); in writeRegister()
|
| /freebsd-12.1/contrib/llvm/lib/MCA/HardwareUnits/ |
| H A D | RegisterFile.cpp | 119 MutableArrayRef<unsigned> UsedPhysRegs) { in allocatePhysRegs() 134 MutableArrayRef<unsigned> FreedPhysRegs) { in freePhysRegs() 149 MutableArrayRef<unsigned> UsedPhysRegs) { in addRegisterWrite() 245 const WriteState &WS, MutableArrayRef<unsigned> FreedPhysRegs) { in removeRegisterWrite()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MappedBlockStream.h | 87 Error readBytes(uint32_t Offset, MutableArrayRef<uint8_t> Buffer); 95 using CacheEntry = MutableArrayRef<uint8_t>;
|