Home
last modified time | relevance | path

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

1234567891011

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h183 return MutableArrayRef<T>(Buff, Length); in copy()
464 Other.MutableArrayRef<T>::operator=(MutableArrayRef<T>());
582 template <class T> MutableArrayRef(T &OneElt) -> MutableArrayRef<T>;
587 MutableArrayRef(T *data, size_t length) -> MutableArrayRef<T>;
591 MutableArrayRef(SmallVectorImpl<T> &Vec) -> MutableArrayRef<T>;
594 MutableArrayRef(SmallVector<T, N> &Vec) -> MutableArrayRef<T>;
597 template <class T> MutableArrayRef(std::vector<T> &Vec) -> MutableArrayRef<T>;
601 MutableArrayRef(std::array<T, N> &Vec) -> MutableArrayRef<T>;
605 MutableArrayRef(T (&Arr)[N]) -> MutableArrayRef<T>;
654 MutableArrayRef<T> makeMutableArrayRef(const MutableArrayRef<T> &Vec) { in makeMutableArrayRef()
[all …]
/freebsd-14.2/contrib/llvm-project/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);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOBuilder.h41 virtual size_t write(MutableArrayRef<char> Buf, size_t Offset,
97 size_t write(MutableArrayRef<char> Buf, size_t Offset,
120 size_t write(MutableArrayRef<char> Buf, size_t Offset,
138 size_t write(MutableArrayRef<char> Buf, size_t Offset,
286 size_t write(MutableArrayRef<char> Buf, size_t Offset,
444 void write(MutableArrayRef<char> Buffer) {
472 size_t writeHeader(MutableArrayRef<char> Buf, size_t Offset) {
477 size_t writeSegments(MutableArrayRef<char> Buf, size_t Offset) {
508 size_t writeRelocations(MutableArrayRef<char> Buf, size_t Offset) {
527 size_t writeSymbols(MutableArrayRef<char> Buf, size_t Offset) {
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h297 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs()
298 return MutableArrayRef<Expr *>( in getVarRefs()
831 MutableArrayRef<Expr *> getSizesRefs() { in getSizesRefs()
2762 MutableArrayRef<Expr *> getInits() { in getInits()
4059 MutableArrayRef<Expr *> getInits() { in getInits()
4067 MutableArrayRef<Expr *> getUpdates() { in getUpdates()
4075 MutableArrayRef<Expr *> getFinals() { in getFinals()
5333 return MutableArrayRef<ValueDecl *>( in getUniqueDeclsRef()
5358 return MutableArrayRef<unsigned>( in getDeclNumListsRef()
5382 return MutableArrayRef<unsigned>( in getComponentListSizesRef()
[all …]
H A DDeclOpenMP.h35 MutableArrayRef<OMPClause *> getClauses() { in getClauses()
124 MutableArrayRef<Expr *> getVars() { in getVars()
126 return llvm::MutableArrayRef(Storage, Data->getNumChildren()); 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()
489 return llvm::MutableArrayRef(Storage, Data->getNumChildren()); in getVars()
501 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
505 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DOwnership.h258 using MultiExprArg = MutableArrayRef<Expr *>;
259 using MultiStmtArg = MutableArrayRef<Stmt *>;
260 using ASTTemplateArgsPtr = MutableArrayRef<ParsedTemplateArgument>;
261 using MultiTypeArg = MutableArrayRef<ParsedType>;
262 using MultiTemplateParamsArg = MutableArrayRef<TemplateParameterList *>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DTransformer.h53 llvm::MutableArrayRef<AtomicChange> Changes;
58 llvm::MutableArrayRef<AtomicChange> Changes;
72 Expected<llvm::MutableArrayRef<AtomicChange>> Changes)>;
189 RewriteResult.Changes = llvm::MutableArrayRef<AtomicChange>(Changes);
/freebsd-14.2/contrib/llvm-project/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;
196 MutableArrayRef<uint8_t> data() { return Data; } in data()
208 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DDebugTypes.h70 void remapRecord(MutableArrayRef<uint8_t> rec,
97 bool remapTypesInSymbolRecord(MutableArrayRef<uint8_t> rec);
99 void remapTypesInTypeRecord(MutableArrayRef<uint8_t> rec);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingWriter.h44 MutableArrayRef<CounterMappingRegion> MappingRegions;
49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataBuffer.h110 llvm::MutableArrayRef<uint8_t> GetData() { in GetData()
111 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize()); in GetData()
H A DStringExtractor.h87 size_t GetHexBytes(llvm::MutableArrayRef<uint8_t> dest,
90 size_t GetHexBytesAvail(llvm::MutableArrayRef<uint8_t> dest);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h197 Block(Section &Parent, MutableArrayRef<char> Content, in Block()
259 MutableArrayRef<char> getMutableContent(LinkGraph &G);
266 MutableArrayRef<char> getAlreadyMutableContent() { in getAlreadyMutableContent()
269 return MutableArrayRef<char>(const_cast<char *>(Data), Size); in getAlreadyMutableContent()
276 void setMutableContent(MutableArrayRef<char> MutableContent) { in setMutableContent()
1036 MutableArrayRef<char> allocateBuffer(size_t Size) { in allocateBuffer()
1056 MutableArrayRef<char> allocateContent(Twine Source) { in allocateContent()
1069 MutableArrayRef<char> allocateCString(StringRef Source) { in allocateCString()
1085 MutableArrayRef<char> allocateCString(Twine Source) { in allocateCString()
1149 MutableArrayRef<uint8_t> C( in getBlockContentWriter()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h75 llvm::MutableArrayRef<uint8_t> mutable_data(uint8_t *context_base) const { in mutable_data()
76 return llvm::MutableArrayRef<uint8_t>(context_base + byte_offset, in mutable_data()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DLLVM.h32 template<typename T> class MutableArrayRef; variable
67 using llvm::MutableArrayRef;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp48 const MCValue &Target, MutableArrayRef<char> Data,
98 MutableArrayRef<char> Data, in applyFixup()
/freebsd-14.2/contrib/llvm-project/lld/include/lld/Common/
H A DLLVM.h33 template <typename T> class MutableArrayRef; variable
73 using llvm::MutableArrayRef;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFrameLowering.h41 MutableArrayRef<CalleeSavedInfo> CSI,
95 MutableArrayRef<CalleeSavedInfo> CSI, unsigned LdmOpc,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h30 template <typename T> class MutableArrayRef; variable
210 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
217 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h189 MutableArrayRef<Entry> getMutableRows() { in getMutableRows()
190 return MutableArrayRef(Rows.get(), Header.NumBuckets); in getMutableRows()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h114 MutableArrayRef<AsmToken> Buf(Tok);
124 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiAsmBackend.cpp52 const MCValue &Target, MutableArrayRef<char> Data,
89 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.h69 MutableArrayRef<CalleeSavedInfo> CSI,
123 MutableArrayRef<CalleeSavedInfo> CSI,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp41 const MCValue &Target, MutableArrayRef<char> Data,
128 MutableArrayRef<char> Data, in applyFixup()

1234567891011