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

1 23 4 5 6 7 8 91011>>

  /external/clang/lib/Format/
SortJavaScriptImports.h 20 #include "llvm/ADT/ArrayRef.h"
30 ArrayRef<tooling::Range> Ranges,
  /external/llvm/include/llvm/DebugInfo/CodeView/
SymbolVisitorDelegate.h 13 #include "llvm/ADT/ArrayRef.h"
26 virtual uint32_t getRecordOffset(ArrayRef<uint8_t> Record) = 0;
RecordSerialization.h 14 #include "llvm/ADT/ArrayRef.h"
34 StringRef getBytesAsCharacters(ArrayRef<uint8_t> LeafData);
35 StringRef getBytesAsCString(ArrayRef<uint8_t> LeafData);
49 inline std::error_code consume(ArrayRef<uint8_t> &Data) {
57 std::error_code consume(ArrayRef<uint8_t> &Data, APSInt &Num);
61 std::error_code consume_numeric(ArrayRef<uint8_t> &Data, uint64_t &Value);
64 std::error_code consume(ArrayRef<uint8_t> &Data, uint32_t &Item);
66 std::error_code consume(ArrayRef<uint8_t> &Data, int32_t &Item);
69 std::error_code consume(ArrayRef<uint8_t> &Data, StringRef &Item);
74 std::error_code consume(ArrayRef<uint8_t> &Data, T *&Item)
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
Hash.h 13 #include "llvm/ADT/ArrayRef.h"
21 uint32_t hashBufferV8(ArrayRef<uint8_t> Data);
PDBFile.h 87 ArrayRef<support::ulittle32_t>
91 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
94 ArrayRef<uint8_t> Data) const override;
96 ArrayRef<support::ulittle32_t> getStreamSizes() const { return StreamSizes; }
97 ArrayRef<ArrayRef<support::ulittle32_t>> getStreamMap() const {
101 ArrayRef<support::ulittle32_t> getDirectoryBlockArray() const;
131 ArrayRef<support::ulittle32_t> StreamSizes;
132 ArrayRef<support::ulittle32_t> DirectoryBlocks;
133 std::vector<ArrayRef<support::ulittle32_t>> StreamMap
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ConstantFolding.h 31 class ArrayRef;
53 ArrayRef<Constant *> Ops,
68 ArrayRef<unsigned> Idxs);
87 ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SpillPlacement.h 30 #include "llvm/ADT/ArrayRef.h"
103 void addConstraints(ArrayRef<BlockConstraint> LiveBlocks);
111 void addPrefSpill(ArrayRef<unsigned> Blocks, bool Strong);
114 void addLinks(ArrayRef<unsigned> Links);
129 ArrayRef<unsigned> getRecentPositive() { return RecentPositive; }
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
TypeIndexDiscovery.h 27 void discoverTypeIndices(ArrayRef<uint8_t> RecordData,
33 void discoverTypeIndices(ArrayRef<uint8_t> RecordData,
40 bool discoverTypeIndicesInSymbol(ArrayRef<uint8_t> RecordData,
42 bool discoverTypeIndicesInSymbol(ArrayRef<uint8_t> RecordData,
MergingTypeTableBuilder.h 13 #include "llvm/ADT/ArrayRef.h"
45 SmallVector<ArrayRef<uint8_t>, 2> SeenRecords;
66 ArrayRef<ArrayRef<uint8_t>> records() const;
68 TypeIndex insertRecordAs(hash_code Hash, ArrayRef<uint8_t> &Record);
69 TypeIndex insertRecordBytes(ArrayRef<uint8_t> &Record);
73 ArrayRef<uint8_t> Data = SimpleSerializer.serialize(Record);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
Hash.h 13 #include "llvm/ADT/ArrayRef.h"
22 uint32_t hashBufferV8(ArrayRef<uint8_t> Data);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
SHA1.h 19 #include "llvm/ADT/ArrayRef.h"
25 template <typename T> class ArrayRef;
37 void update(ArrayRef<uint8_t> Data);
41 update(ArrayRef<uint8_t>((uint8_t *)const_cast<char *>(Str.data()),
58 static std::array<uint8_t, 20> hash(ArrayRef<uint8_t> Data);
GlobPattern.h 28 template <typename T> class ArrayRef;
36 bool matchOne(ArrayRef<BitVector> Pat, StringRef S) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
Support.h 18 #include "llvm/ADT/ArrayRef.h"
55 llvm::ArrayRef<unsigned> ProcResourceUsage);
HWEventListener.h 19 #include "llvm/ADT/ArrayRef.h"
65 llvm::ArrayRef<std::pair<ResourceRef, double>> UR)
68 llvm::ArrayRef<std::pair<ResourceRef, double>> UsedResources;
73 HWInstructionDispatchedEvent(const InstRef &IR, llvm::ArrayRef<unsigned> Regs)
78 llvm::ArrayRef<unsigned> UsedPhysRegs;
83 HWInstructionRetiredEvent(const InstRef &IR, llvm::ArrayRef<unsigned> Regs)
88 llvm::ArrayRef<unsigned> FreedPhysRegs;
131 virtual void onReservedBuffers(llvm::ArrayRef<unsigned> Buffers) {}
132 virtual void onReleasedBuffers(llvm::ArrayRef<unsigned> Buffers) {}
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MD5.h 37 template <typename T> class ArrayRef;
54 void update(ArrayRef<uint8_t> Data);
67 static std::array<uint8_t, 16> hash(ArrayRef<uint8_t> Data);
70 const uint8_t *body(ArrayRef<uint8_t> Data);
  /art/compiler/optimizing/
linear_order.h 26 void LinearizeGraphInternal(const HGraph* graph, ArrayRef<HBasicBlock*> linear_order);
43 // Resize the vector and pass an ArrayRef<> to internal implementation which is shared
46 LinearizeGraphInternal(graph, ArrayRef<HBasicBlock*>(*linear_order));
  /external/clang/include/clang/AST/
ASTDiagnostic.h 41 ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs,
44 ArrayRef<intptr_t> QualTypeVals);
  /external/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyTargetStreamer.cpp 38 static void PrintTypes(formatted_raw_ostream &OS, ArrayRef<MVT> Types) {
50 void WebAssemblyTargetAsmStreamer::emitParam(ArrayRef<MVT> Types) {
55 void WebAssemblyTargetAsmStreamer::emitResult(ArrayRef<MVT> Types) {
60 void WebAssemblyTargetAsmStreamer::emitLocal(ArrayRef<MVT> Types) {
79 static void EncodeTypes(MCStreamer &Streamer, ArrayRef<MVT> Types) {
85 void WebAssemblyTargetELFStreamer::emitParam(ArrayRef<MVT> Types) {
90 void WebAssemblyTargetELFStreamer::emitResult(ArrayRef<MVT> Types) {
95 void WebAssemblyTargetELFStreamer::emitLocal(ArrayRef<MVT> Types) {
  /external/llvm/include/llvm/ADT/
edit_distance.h 19 #include "llvm/ADT/ArrayRef.h"
43 unsigned ComputeEditDistance(ArrayRef<T> FromArray, ArrayRef<T> ToArray,
58 typename ArrayRef<T>::size_type m = FromArray.size();
59 typename ArrayRef<T>::size_type n = ToArray.size();
73 for (typename ArrayRef<T>::size_type y = 1; y <= m; ++y) {
78 for (typename ArrayRef<T>::size_type x = 1; x <= n; ++x) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
edit_distance.h 19 #include "llvm/ADT/ArrayRef.h"
43 unsigned ComputeEditDistance(ArrayRef<T> FromArray, ArrayRef<T> ToArray,
58 typename ArrayRef<T>::size_type m = FromArray.size();
59 typename ArrayRef<T>::size_type n = ToArray.size();
73 for (typename ArrayRef<T>::size_type y = 1; y <= m; ++y) {
78 for (typename ArrayRef<T>::size_type x = 1; x <= n; ++x) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 22 template <typename T> class ArrayRef;
50 ArrayRef<Type *> InitArgTypes);
58 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs,
66 void appendToUsed(Module &M, ArrayRef<GlobalValue *> Values);
69 void appendToCompilerUsed(Module &M, ArrayRef<GlobalValue *> Values);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
edit_distance.h 19 #include "llvm/ADT/ArrayRef.h"
43 unsigned ComputeEditDistance(ArrayRef<T> FromArray, ArrayRef<T> ToArray,
58 typename ArrayRef<T>::size_type m = FromArray.size();
59 typename ArrayRef<T>::size_type n = ToArray.size();
73 for (typename ArrayRef<T>::size_type y = 1; y <= m; ++y) {
78 for (typename ArrayRef<T>::size_type x = 1; x <= n; ++x) {
  /external/llvm/include/llvm/Analysis/
ConstantFolding.h 25 template <typename T> class ArrayRef;
61 Constant *ConstantFoldInstOperands(Instruction *I, ArrayRef<Constant *> Ops,
74 ArrayRef<Constant *> Ops,
102 ArrayRef<unsigned> Idxs);
108 ArrayRef<unsigned> Idxs);
130 ArrayRef<Constant *> Indices);
138 Constant *ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands,
  /external/clang/lib/AST/
SelectorLocationsKind.cpp 65 SourceLocation getArgLoc(unsigned Index, ArrayRef<T*> Args) {
71 ArrayRef<SourceLocation> SelLocs,
72 ArrayRef<T *> Args,
98 ArrayRef<SourceLocation> SelLocs,
99 ArrayRef<Expr *> Args,
107 ArrayRef<Expr *> Args,
115 ArrayRef<SourceLocation> SelLocs,
116 ArrayRef<ParmVarDecl *> Args,
124 ArrayRef<ParmVarDecl *> Args,
  /art/compiler/jni/quick/
jni_compiler.h 38 ArrayRef<const uint8_t> cfi)
50 ArrayRef<const uint8_t> GetCode() const { return ArrayRef<const uint8_t>(code_); }
54 ArrayRef<const uint8_t> GetCfi() const { return ArrayRef<const uint8_t>(cfi_); }

Completed in 1567 milliseconds

1 23 4 5 6 7 8 91011>>