OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ArrayRef
(Results
151 - 175
of
1983
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/art/compiler/
compiled_method.cc
26
const
ArrayRef
<const uint8_t>& quick_code)
103
const
ArrayRef
<const uint8_t>& quick_code,
104
const
ArrayRef
<const uint8_t>& vmap_table,
105
const
ArrayRef
<const uint8_t>& cfi_info,
106
const
ArrayRef
<const linker::LinkerPatch>& patches)
116
const
ArrayRef
<const uint8_t>& quick_code,
117
const
ArrayRef
<const uint8_t>& vmap_table,
118
const
ArrayRef
<const uint8_t>& cfi_info,
119
const
ArrayRef
<const linker::LinkerPatch>& patches) {
/external/llvm/lib/IR/
IRBuilder.cpp
59
static CallInst *createCallHelper(Value *Callee,
ArrayRef
<Value *> Ops,
70
ArrayRef
<Value *> Ops,
246
ArrayRef
<Value *> Ops,
247
ArrayRef
<Type *> OverloadedTypes,
314
Value *ActualCallee, uint32_t Flags,
ArrayRef
<T0> CallArgs,
315
ArrayRef
<T1> TransitionArgs,
ArrayRef
<T2> DeoptArgs,
316
ArrayRef
<T3> GCArgs) {
336
Value *ActualCallee, uint32_t Flags,
ArrayRef
<T0> CallArgs,
337
ArrayRef
<T1> TransitionArgs, ArrayRef<T2> DeoptArgs, ArrayRef<T3> GCArgs
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/
RandomIRBuilder.cpp
23
ArrayRef
<Instruction *> Insts) {
28
ArrayRef
<Instruction *> Insts,
29
ArrayRef
<Value *> Srcs,
42
Value *RandomIRBuilder::newSource(BasicBlock &BB,
ArrayRef
<Instruction *> Insts,
43
ArrayRef
<Value *> Srcs, SourcePred Pred) {
96
ArrayRef
<Instruction *> Insts, Value *V) {
120
void RandomIRBuilder::newSink(BasicBlock &BB,
ArrayRef
<Instruction *> Insts,
134
ArrayRef
<Instruction *> Insts,
135
ArrayRef
<Value *> Srcs, SourcePred Pred) {
/external/llvm/include/llvm/IR/
Intrinsics.h
19
#include "llvm/ADT/
ArrayRef
.h"
48
std::string getName(ID id,
ArrayRef
<Type*> Tys = None);
52
ArrayRef
<Type*> Tys = None);
72
Function *getDeclaration(Module *M, ID id,
ArrayRef
<Type*> Tys = None);
78
int lookupLLVMIntrinsicByName(
ArrayRef
<const char *> NameTable,
144
bool matchIntrinsicType(Type *Ty,
ArrayRef
<IITDescriptor> &Infos,
151
bool matchIntrinsicVarArg(bool isVarArg,
ArrayRef
<IITDescriptor> &Infos);
/external/swiftshader/third_party/LLVM/include/llvm/
Metadata.h
20
#include "llvm/ADT/
ArrayRef
.h"
114
MDNode(LLVMContext &C,
ArrayRef
<Value*> Vals, bool isFunctionLocal);
116
static MDNode *getMDNode(LLVMContext &C,
ArrayRef
<Value*> Vals,
120
static MDNode *get(LLVMContext &Context,
ArrayRef
<Value*> Vals);
124
ArrayRef
<Value*> Vals,
127
static MDNode *getIfExists(LLVMContext &Context,
ArrayRef
<Value*> Vals);
132
static MDNode *getTemporary(LLVMContext &Context,
ArrayRef
<Value*> Vals);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ConstantFolding.h
25
template <typename T> class
ArrayRef
;
63
Constant *ConstantFoldInstOperands(Instruction *I,
ArrayRef
<Constant *> Ops,
97
ArrayRef
<unsigned> Idxs);
103
ArrayRef
<unsigned> Idxs);
138
ArrayRef
<Constant *> Indices);
147
ArrayRef
<Constant *> Operands,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Intrinsics.h
19
#include "llvm/ADT/
ArrayRef
.h"
57
std::string getName(ID id,
ArrayRef
<Type*> Tys);
61
ArrayRef
<Type*> Tys = None);
81
Function *getDeclaration(Module *M, ID id,
ArrayRef
<Type*> Tys = None);
87
int lookupLLVMIntrinsicByName(
ArrayRef
<const char *> NameTable,
171
bool matchIntrinsicType(Type *Ty,
ArrayRef
<IITDescriptor> &Infos,
178
bool matchIntrinsicVarArg(bool isVarArg,
ArrayRef
<IITDescriptor> &Infos);
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Intrinsics.h
19
#include "llvm/ADT/
ArrayRef
.h"
57
std::string getName(ID id,
ArrayRef
<Type*> Tys);
61
ArrayRef
<Type*> Tys = None);
81
Function *getDeclaration(Module *M, ID id,
ArrayRef
<Type*> Tys = None);
87
int lookupLLVMIntrinsicByName(
ArrayRef
<const char *> NameTable,
153
bool matchIntrinsicType(Type *Ty,
ArrayRef
<IITDescriptor> &Infos,
160
bool matchIntrinsicVarArg(bool isVarArg,
ArrayRef
<IITDescriptor> &Infos);
/art/libartbase/base/
transform_array_ref.h
28
* @brief An
ArrayRef
<> wrapper that uses a transformation function for element access.
33
using Iter = TransformIterator<typename
ArrayRef
<BaseType>::iterator, Function>;
38
TransformIterator<typename
ArrayRef
<BaseType>::const_iterator, Function>;
62
using difference_type = typename
ArrayRef
<BaseType>::difference_type;
63
using size_type = typename
ArrayRef
<BaseType>::size_type;
70
TransformArrayRef(const
ArrayRef
<OtherBT>& base, Function fn)
130
// Retrieve the base
ArrayRef
<>.
131
ArrayRef
<BaseType> base() {
134
ArrayRef
<const BaseType> base() const {
135
return
ArrayRef
<const BaseType>(data_.base_)
[
all
...]
/art/compiler/debug/
elf_debug_writer.h
61
std::vector<
ArrayRef
<const uint8_t>>& added_elf_files,
68
const
ArrayRef
<mirror::Class*>& types)
/art/compiler/optimizing/
builder.h
42
ArrayRef
<const uint8_t> interpreter_metadata,
74
const
ArrayRef
<const uint8_t> interpreter_metadata_;
/art/dex2oat/linker/mips/
relative_patcher_mips32r6_test.cc
33
static const
ArrayRef
<const uint8_t> kUnpatchedPcRelativeCode;
41
void CheckPcRelativePatch(const
ArrayRef
<const LinkerPatch>& patches, uint32_t target_offset);
55
const
ArrayRef
<const uint8_t> Mips32r6RelativePatcherTest::kUnpatchedPcRelativeCode(
58
void Mips32r6RelativePatcherTest::CheckPcRelativePatch(const
ArrayRef
<const LinkerPatch>& patches,
60
AddCompiledMethod(MethodRef(1u), kUnpatchedPcRelativeCode,
ArrayRef
<const LinkerPatch>(patches));
74
EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u),
ArrayRef
<const uint8_t>(expected_code)));
87
CheckPcRelativePatch(
ArrayRef
<const LinkerPatch>(patches), bss_begin_ + string_entry_offset);
98
CheckPcRelativePatch(
ArrayRef
<const LinkerPatch>(patches), string_offset);
relative_patcher_mips_test.cc
34
static const
ArrayRef
<const uint8_t> kUnpatchedPcRelativeCode;
42
void CheckPcRelativePatch(const
ArrayRef
<const LinkerPatch>& patches, uint32_t target_offset);
58
const
ArrayRef
<const uint8_t> MipsRelativePatcherTest::kUnpatchedPcRelativeCode(
61
void MipsRelativePatcherTest::CheckPcRelativePatch(const
ArrayRef
<const LinkerPatch>& patches,
63
AddCompiledMethod(MethodRef(1u), kUnpatchedPcRelativeCode,
ArrayRef
<const LinkerPatch>(patches));
79
EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u),
ArrayRef
<const uint8_t>(expected_code)));
92
CheckPcRelativePatch(
ArrayRef
<const LinkerPatch>(patches), bss_begin_ + string_entry_offset);
103
CheckPcRelativePatch(
ArrayRef
<const LinkerPatch>(patches), string_offset);
/external/clang/include/clang/Basic/
LLVM.h
31
template<typename T> class
ArrayRef
;
66
using llvm::
ArrayRef
;
/external/llvm/include/llvm/Support/
Process.h
36
template <typename T> class
ArrayRef
;
91
ArrayRef
<const char *> ArgsFromMain,
/external/llvm/include/llvm/Target/
CostTable.h
18
#include "llvm/ADT/
ArrayRef
.h"
31
inline const CostTblEntry *CostTableLookup(
ArrayRef
<CostTblEntry> Tbl,
54
ConvertCostTableLookup(
ArrayRef
<TypeConversionCostTblEntry> Tbl,
/external/llvm/lib/CodeGen/
AllocationOrder.h
20
#include "llvm/ADT/
ArrayRef
.h"
31
ArrayRef
<MCPhysReg> Order;
45
ArrayRef
<MCPhysReg> getOrder() const { return Order; }
/external/llvm/lib/Target/
TargetSubtargetInfo.cpp
22
ArrayRef
<SubtargetFeatureKV> PF,
ArrayRef
<SubtargetFeatureKV> PD,
/external/llvm/tools/dsymutil/
dsymutil.h
40
parseDebugMap(StringRef InputFile,
ArrayRef
<std::string> Archs,
44
bool dumpStab(StringRef InputFile,
ArrayRef
<std::string> Archs,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
CostTable.h
18
#include "llvm/ADT/
ArrayRef
.h"
32
inline const CostTblEntry *CostTableLookup(
ArrayRef
<CostTblEntry> Tbl,
55
ConvertCostTableLookup(
ArrayRef
<TypeConversionCostTblEntry> Tbl,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h
39
Error visitMemberRecord(TypeLeafKind Kind,
ArrayRef
<uint8_t> Record,
42
Error visitMemberRecordStream(
ArrayRef
<uint8_t> FieldList,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
UDTLayout.h
13
#include "llvm/ADT/
ArrayRef
.h"
120
ArrayRef
<LayoutItemBase *> layout_items() const { return LayoutItems; }
121
ArrayRef
<BaseClassLayout *> bases() const { return AllBases; }
122
ArrayRef
<BaseClassLayout *> regular_bases() const { return NonVirtualBases; }
123
ArrayRef
<BaseClassLayout *> virtual_bases() const { return VirtualBases; }
125
ArrayRef
<std::unique_ptr<PDBSymbolFunc>> funcs() const { return Funcs; }
126
ArrayRef
<std::unique_ptr<PDBSymbol>> other_items() const { return Other; }
142
ArrayRef
<BaseClassLayout *> NonVirtualBases;
143
ArrayRef
<BaseClassLayout *> VirtualBases;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
AllocationOrder.h
20
#include "llvm/ADT/
ArrayRef
.h"
32
ArrayRef
<MCPhysReg> Order;
50
ArrayRef
<MCPhysReg> getOrder() const { return Order; }
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64CallLowering.h
18
#include "llvm/ADT/
ArrayRef
.h"
41
ArrayRef
<unsigned> VRegs) const override;
45
ArrayRef
<ArgInfo> OrigArgs) const override;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMCallLowering.h
18
#include "llvm/ADT/
ArrayRef
.h"
40
ArrayRef
<unsigned> VRegs) const override;
44
ArrayRef
<ArgInfo> OrigArgs) const override;
Completed in 1337 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>