Home
last modified time | relevance | path

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

123456

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DArrayRef.h297 /*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 DBitVector.h82 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 DOpenMPClause.h185 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 DDeclOpenMP.h57 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 DRegisterFile.h169 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 DOwnership.h277 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 DBinaryByteStream.h93 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 DDataBuffer.h88 llvm::MutableArrayRef<uint8_t> GetData() { in GetData()
89 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize()); in GetData()
H A DStringExtractor.h98 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 DAssumptionCache.h128 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 DCoverageMappingWriter.h45 MutableArrayRef<CounterMappingRegion> MappingRegions;
50 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-types.h71 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 DLLVM.h33 template<typename T> class MutableArrayRef; variable
65 using llvm::MutableArrayRef;
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h28 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 DWebAssemblyAsmBackend.cpp48 const MCValue &Target, MutableArrayRef<char> Data,
104 MutableArrayRef<char> Data, in applyFixup()
/freebsd-12.1/contrib/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h109 MutableArrayRef<AsmToken> Buf(Tok);
119 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBTrace.cpp30 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 DSystemZMCAsmBackend.cpp55 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 DBPFAsmBackend.cpp31 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 DWholeProgramDevirt.cpp199 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 DLanaiAsmBackend.cpp53 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 DMSP430AsmBackend.cpp42 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 DRegisterContextMinidump_x86_64.cpp20 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 DRegisterFile.cpp119 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 DMappedBlockStream.h87 Error readBytes(uint32_t Offset, MutableArrayRef<uint8_t> Buffer);
95 using CacheEntry = MutableArrayRef<uint8_t>;

123456