HomeSort by relevance Sort by last modified time
    Searched refs:ArrayRef (Results 201 - 225 of 1983) sorted by null

1 2 3 4 5 6 7 891011>>

  /art/compiler/optimizing/
register_allocation_resolver.h 44 void Resolve(ArrayRef<HInstruction* const> safepoints,
51 ArrayRef<LiveInterval* const> temp_intervals);
58 size_t CalculateMaximumSafepointSpillSize(ArrayRef<HInstruction* const> safepoints);
  /external/llvm/include/llvm/Analysis/
VectorUtils.h 22 template <typename T> class ArrayRef;
113 computeMinimumValueSizes(ArrayRef<BasicBlock*> Blocks,
124 Instruction *propagateMetadata(Instruction *I, ArrayRef<Value *> VL);
  /external/llvm/include/llvm/Option/
OptTable.h 13 #include "llvm/ADT/ArrayRef.h"
53 ArrayRef<Info> OptionInfos;
76 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
152 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
  /external/llvm/include/llvm/TableGen/
SetTheory.h 50 #include "llvm/ADT/ArrayRef.h"
77 ArrayRef<SMLoc> Loc) =0;
124 void evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc);
128 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) {
  /external/llvm/lib/DebugInfo/CodeView/
StreamWriter.cpp 21 Error StreamWriter::writeBytes(ArrayRef<uint8_t> Buffer) {
46 ArrayRef<uint8_t> Bytes(Str.bytes_begin(), Str.bytes_end());
70 ArrayRef<uint8_t> Chunk;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIInfo.h 19 template <typename T> class ArrayRef;
48 ArrayRef<MCPhysReg> GetByValArgRegs() const;
51 ArrayRef<MCPhysReg> GetVarArgRegs() const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
TpiStreamBuilder.h 31 static ArrayRef<uint8_t> bytes(const codeview::CVType &Item) {
57 void addTypeRecord(ArrayRef<uint8_t> Type, Optional<uint32_t> Hash);
78 std::vector<ArrayRef<uint8_t>> TypeRecords;
DbiStreamBuilder.h 56 void setSectionMap(ArrayRef<SecMapEntry> SecMap);
59 Error addDbgStream(pdb::DbgHeaderType Type, ArrayRef<uint8_t> Data);
83 createSectionMap(ArrayRef<llvm::object::coff_section> SecHdrs);
87 ArrayRef<uint8_t> Data;
126 ArrayRef<SecMapEntry> SectionMap;
PDBFile.h 66 ArrayRef<support::ulittle32_t>
70 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
73 ArrayRef<uint8_t> Data) const override;
75 ArrayRef<support::ulittle32_t> getStreamSizes() const {
78 ArrayRef<ArrayRef<support::ulittle32_t>> getStreamMap() const {
85 ArrayRef<support::ulittle32_t> getDirectoryBlockArray() const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
BinaryStream.h 13 #include "llvm/ADT/ArrayRef.h"
31 /// data on a read, the API returns an ArrayRef to data owned by the stream's
43 /// read the bytes and set the output ArrayRef to point to data owned by the
46 ArrayRef<uint8_t> &Buffer) = 0;
51 ArrayRef<uint8_t> &Buffer) = 0;
81 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) = 0;
BinaryItemStream.h 13 #include "llvm/ADT/ArrayRef.h"
24 static ArrayRef<uint8_t> bytes(const T &Item) = delete;
43 ArrayRef<uint8_t> &Buffer) override {
57 ArrayRef<uint8_t> &Buffer) override {
65 void setItems(ArrayRef<T> ItemArray) {
100 ArrayRef<T> Items;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
SetTheory.h 50 #include "llvm/ADT/ArrayRef.h"
80 ArrayRef<SMLoc> Loc) = 0;
128 void evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc);
132 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
TypeTableCollection.cpp 19 TypeTableCollection::TypeTableCollection(ArrayRef<ArrayRef<uint8_t>> Records)
40 ArrayRef<uint8_t> Bytes = Records[Index.toArrayIndex()];
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIInfo.h 19 template <typename T> class ArrayRef;
48 ArrayRef<MCPhysReg> GetByValArgRegs() const;
51 ArrayRef<MCPhysReg> GetVarArgRegs() const;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
CoverageExporterJson.h 73 void renderFiles(ArrayRef<std::string> SourceFiles,
74 ArrayRef<FileCoverageSummary> FileReports);
91 void renderRegions(ArrayRef<coverage::CountedRegion> Regions);
  /external/clang/lib/AST/
ExprObjC.cpp 20 ObjCArrayLiteral::ObjCArrayLiteral(ArrayRef<Expr *> Elements, QualType T,
39 ArrayRef<Expr *> Elements,
53 ObjCDictionaryLiteral::ObjCDictionaryLiteral(ArrayRef<ObjCDictionaryElement> VK,
90 ArrayRef<ObjCDictionaryElement> VK,
121 ArrayRef<SourceLocation> SelLocs,
123 ObjCMethodDecl *Method, ArrayRef<Expr *> Args,
142 ArrayRef<SourceLocation> SelLocs,
144 ObjCMethodDecl *Method, ArrayRef<Expr *> Args,
159 Selector Sel, ArrayRef<SourceLocation> SelLocs,
161 ObjCMethodDecl *Method, ArrayRef<Expr *> Args
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
CheckerRegistration.cpp 42 ClangCheckerRegistry(ArrayRef<std::string> plugins,
48 ClangCheckerRegistry::ClangCheckerRegistry(ArrayRef<std::string> plugins,
52 for (ArrayRef<std::string>::iterator i = plugins.begin(), e = plugins.end();
106 ArrayRef<std::string> plugins,
134 void ento::printCheckerHelp(raw_ostream &out, ArrayRef<std::string> plugins) {
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 21 ArrayRef<SubtargetFeatureKV> ProcDesc,
22 ArrayRef<SubtargetFeatureKV> ProcFeatures) {
41 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD,
78 ArrayRef<SubtargetInfoKV> SchedModels(ProcSchedModels, ProcDesc.size());
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
CallLowering.h 18 #include "llvm/ADT/ArrayRef.h"
94 ArrayRef<CCValAssign> VAs) {
133 bool handleAssignments(MachineIRBuilder &MIRBuilder, ArrayRef<ArgInfo> Args,
161 ArrayRef<unsigned> VRegs) const {
187 ArrayRef<ArgInfo> OrigArgs) const {
209 unsigned ResReg, ArrayRef<unsigned> ArgRegs,
  /art/runtime/
vdex_file.h 269 ArrayRef<const uint8_t> GetVerifierDepsData() const {
270 return ArrayRef<const uint8_t>(
275 ArrayRef<const uint8_t> GetQuickeningInfo() const {
276 return ArrayRef<const uint8_t>(
282 ArrayRef<const uint8_t> GetBootClassPathChecksumData() const {
283 return ArrayRef<const uint8_t>(
288 ArrayRef<const uint8_t> GetClassLoaderContextData() const {
289 return ArrayRef<const uint8_t>(
328 ArrayRef<const uint8_t> GetQuickenedInfoOf(const DexFile& dex_file,
367 const ArrayRef<const uint8_t>& quickening_info) const
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 41 #include "llvm/ADT/ArrayRef.h"
86 ArrayRef<ParserValue> Args,
107 llvm::ArrayRef<std::pair<MatcherCtor, unsigned>> Context);
119 getMatcherCompletions(llvm::ArrayRef<ArgKind> AcceptedTypes);
134 ArrayRef<ParserValue> Args,
138 llvm::ArrayRef<std::pair<MatcherCtor, unsigned>> Context) override;
141 getMatcherCompletions(llvm::ArrayRef<ArgKind> AcceptedTypes) override;
241 getNamedValueCompletions(ArrayRef<ArgKind> AcceptedTypes);
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 50 #include "llvm/ADT/ArrayRef.h"
116 ArrayRef<unsigned> getProcResourceCycles(unsigned MBBNum) const;
268 ArrayRef<const MachineBasicBlock *> Extrablocks = None,
269 ArrayRef<const MCSchedClassDesc *> ExtraInstrs = None,
270 ArrayRef<const MCSchedClassDesc *> RemoveInstrs = None) const;
316 ArrayRef<const MachineBasicBlock*> Trace);
326 ArrayRef<unsigned> getProcResourceDepths(unsigned MBBNum) const;
327 ArrayRef<unsigned> getProcResourceHeights(unsigned MBBNum) const;
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamReader.h 13 #include "llvm/ADT/ArrayRef.h"
31 Error readLongestContiguousChunk(ArrayRef<uint8_t> &Buffer);
32 Error readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size);
49 ArrayRef<uint8_t> Buffer;
57 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) {
58 ArrayRef<uint8_t> Bytes;
60 Array = ArrayRef<T>();
69 Array = ArrayRef<T>(reinterpret_cast<const T *>(Bytes.data()), NumElements);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 13 #include "llvm/ADT/ArrayRef.h"
32 CVRecord(Kind K, ArrayRef<uint8_t> Data) : Type(K), RecordData(Data) {}
38 ArrayRef<uint8_t> data() const { return RecordData; }
44 ArrayRef<uint8_t> content() const {
53 ArrayRef<uint8_t> RecordData;
65 Error forEachCodeViewRecord(ArrayRef<uint8_t> StreamBuffer, Func F) {
77 ArrayRef<uint8_t> Data = StreamBuffer.take_front(RealLen);
103 ArrayRef<uint8_t> RawData;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 13 #include "llvm/ADT/ArrayRef.h"
65 ArrayRef<uint8_t> &Buffer) override;
67 ArrayRef<uint8_t> &Buffer) override;
85 void fixCacheAfterWrite(uint32_t Offset, ArrayRef<uint8_t> Data) const;
89 ArrayRef<uint8_t> &Buffer);
132 ArrayRef<uint8_t> &Buffer) override;
134 ArrayRef<uint8_t> &Buffer) override;
137 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Buffer) override;

Completed in 1570 milliseconds

1 2 3 4 5 6 7 891011>>