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

1 2 3 4 5 6 7 891011>>

  /external/llvm/include/llvm/Object/
ELFTypes.h 13 #include "llvm/ADT/ArrayRef.h"
477 ArrayRef<Elf_Word> buckets() const {
478 return ArrayRef<Elf_Word>(&nbucket + 2, &nbucket + 2 + nbucket);
481 ArrayRef<Elf_Word> chains() const {
482 return ArrayRef<Elf_Word>(&nbucket + 2 + nbucket,
496 ArrayRef<Elf_Off> filter() const {
497 return ArrayRef<Elf_Off>(reinterpret_cast<const Elf_Off *>(&shift2 + 1),
501 ArrayRef<Elf_Word> buckets() const {
502 return ArrayRef<Elf_Word>(
506 ArrayRef<Elf_Word> values(unsigned DynamicSymCount) const
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 361 ArrayRef<const uint8_t>(), // no code
365 ArrayRef<const SrcMapElem>(), // src_mapping_table
366 ArrayRef<const uint8_t>(builder.GetData()), // vmap_table
367 ArrayRef<const uint8_t>(), // cfi data
368 ArrayRef<const LinkerPatch>());
  /external/clang/include/clang/AST/
ExprObjC.h 149 ObjCArrayLiteral(ArrayRef<Expr *> Elements,
158 ArrayRef<Expr *> Elements,
271 ObjCDictionaryLiteral(ArrayRef<ObjCDictionaryElement> VK,
305 ArrayRef<ObjCDictionaryElement> VK,
    [all...]
APValue.h 142 APValue(LValueBase B, const CharUnits &O, ArrayRef<LValuePathEntry> Path,
158 ArrayRef<const CXXRecordDecl*> Path) : Kind(Uninitialized) {
255 ArrayRef<LValuePathEntry> getLValuePath() const;
336 ArrayRef<const CXXRecordDecl*> getMemberPointerPath() const;
379 ArrayRef<LValuePathEntry> Path, bool OnePastTheEnd,
442 ArrayRef<const CXXRecordDecl*> Path);
DeclFriend.h 78 ArrayRef<TemplateParameterList*> FriendTypeTPLists)
104 ArrayRef<TemplateParameterList*> FriendTypeTPLists
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 108 ArrayRef<const char *> Args) {
149 ArrayRef<const char *> Args) {
222 static bool verifyTransformedFiles(ArrayRef<std::string> resultFiles) {
229 for (ArrayRef<std::string>::iterator
369 ArrayRef<const char*> Args(argv+optargc+1, argc-optargc-1);
  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 18 #include "llvm/ADT/ArrayRef.h"
248 typedef ArrayRef<InstrProfRecord> data_type;
286 virtual std::error_code getRecords(ArrayRef<InstrProfRecord> &Data) = 0;
289 ArrayRef<InstrProfRecord> &Data) = 0;
315 std::error_code getRecords(ArrayRef<InstrProfRecord> &Data) override;
317 ArrayRef<InstrProfRecord> &Data) override;
  /external/llvm/lib/Target/AMDGPU/
AMDGPUInstrInfo.cpp 156 MachineFunction &MF, MachineInstr *MI, ArrayRef<unsigned> Ops,
162 MachineFunction &MF, MachineInstr *MI, ArrayRef<unsigned> Ops,
233 bool AMDGPUInstrInfo::SubsumesPredicate(ArrayRef<MachineOperand> Pred1,
234 ArrayRef<MachineOperand> Pred2) const {
368 ArrayRef<std::pair<int, const char *>>
  /external/clang/lib/AST/
Stmt.cpp 282 CompoundStmt::CompoundStmt(const ASTContext &C, ArrayRef<Stmt*> Stmts,
298 void CompoundStmt::setStmts(const ASTContext &C, ArrayRef<Stmt *> Stmts) {
314 ArrayRef<const Attr*> Attrs,
710 ArrayRef<Token> asmtoks, unsigned numoutputs,
712 ArrayRef<StringRef> constraints, ArrayRef<Expr*> exprs,
713 StringRef asmstr, ArrayRef<StringRef> clobbers,
727 ArrayRef<Token> asmtoks,
728 ArrayRef<StringRef> constraints,
729 ArrayRef<Expr*> exprs
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 239 void lowerBitSetCalls(ArrayRef<Metadata *> BitSets,
246 void buildBitSetsFromGlobalVariables(ArrayRef<Metadata *> BitSets,
247 ArrayRef<GlobalVariable *> Globals);
253 void buildBitSetsFromFunctions(ArrayRef<Metadata *> BitSets,
254 ArrayRef<Function *> Functions);
255 void buildBitSetsFromDisjointSet(ArrayRef<Metadata *> BitSets,
256 ArrayRef<GlobalObject *> Globals);
530 ArrayRef<Metadata *> BitSets, ArrayRef<GlobalVariable *> Globals) {
595 ArrayRef<Metadata *> BitSets, Constant *CombinedGlobalAddr
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 18 #include "llvm/ADT/ArrayRef.h"
443 ArrayRef<Value *> CallArgs,
444 ArrayRef<Value *> DeoptArgs,
445 ArrayRef<Value *> GCArgs,
452 ArrayRef<Use> CallArgs,
453 ArrayRef<Use> TransitionArgs,
454 ArrayRef<Use> DeoptArgs,
455 ArrayRef<Value *> GCArgs,
462 Value *ActualCallee, ArrayRef<Use> CallArgs,
463 ArrayRef<Value *> DeoptArgs
    [all...]
NoFolder.h 25 #include "llvm/ADT/ArrayRef.h"
181 ArrayRef<Constant *> IdxList) const {
186 // warnings about whether to convert Idx to ArrayRef<Constant *> or
187 // ArrayRef<Value *>.
191 ArrayRef<Value *> IdxList) const {
196 ArrayRef<Constant *> IdxList) const {
202 // warnings about whether to convert Idx to ArrayRef<Constant *> or
203 // ArrayRef<Value *>.
207 ArrayRef<Value *> IdxList) const {
287 ArrayRef<unsigned> IdxList) const
    [all...]
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 131 ArrayRef<unsigned>
188 ArrayRef<unsigned> PredPRDepths = getProcResourceDepths(PredNum);
189 ArrayRef<unsigned> PredPRCycles = MTM.getProcResourceCycles(PredNum);
204 ArrayRef<unsigned> PRCycles = MTM.getProcResourceCycles(MBB->getNumber());
223 ArrayRef<unsigned> SuccPRHeights = getProcResourceHeights(SuccNum);
252 ArrayRef<unsigned>
265 ArrayRef<unsigned>
808 ArrayRef<unsigned> PRDepths = getProcResourceDepths(MBB->getNumber());
    [all...]
MachineModuleInfo.cpp 84 ArrayRef<MCSymbol *> getAddrLabelSymbolToEmit(BasicBlock *BB);
94 ArrayRef<MCSymbol *> MMIAddrLabelMap::getAddrLabelSymbolToEmit(BasicBlock *BB) {
260 ArrayRef<MCSymbol *>
328 ArrayRef<const GlobalValue *> TyInfo) {
338 ArrayRef<const GlobalValue *> TyInfo) {
420 ArrayRef<unsigned> Sites) {
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 87 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
133 if (!WriteMiscThunk(out, ArrayRef<const uint8_t>(current_method_thunks_))) {
181 DCHECK(NeedsErratum843419Thunk(ArrayRef<const uint8_t>(*code),
278 bool Arm64RelativePatcher::NeedsErratum843419Thunk(ArrayRef<const uint8_t> code,
338 uint32_t Arm64RelativePatcher::GetInsn(ArrayRef<const uint8_t> code, uint32_t offset) {
351 return GetInsn(ArrayRef<const uint8_t>(*code), offset);
  /external/clang/include/clang/Basic/
TargetInfo.h 519 virtual ArrayRef<Builtin::Info> getTargetBuiltins() const = 0;
620 void setRequiresImmediate(llvm::ArrayRef<int> Exacts) {
688 ArrayRef<ConstraintInfo> OutputConstraints,
    [all...]
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 63 ArrayRef<const Value *> Arguments) const {
70 Intrinsic::ID IID, Type *RetTy, ArrayRef<const Value *> Arguments) const {
284 unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef<unsigned> Indices,
293 ArrayRef<Type *> Tys) const {
300 ArrayRef<Type *> Tys) const {
325 TargetTransformInfo::getCostOfKeepingLiveOverCall(ArrayRef<Type *> Tys) const {
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 255 std::function<ConstantRange(ArrayRef<ConstantRange>)> Op;
264 Op = [](ArrayRef<ConstantRange> Ops) {
271 Op = [](ArrayRef<ConstantRange> Ops) {
278 Op = [](ArrayRef<ConstantRange> Ops) {
290 Op = [](ArrayRef<ConstantRange> Ops) {
297 Op = [](ArrayRef<ConstantRange> Ops) {
  /art/compiler/linker/arm/
relative_patcher_thumb2.cc 106 uint32_t Thumb2RelativePatcher::GetInsn32(ArrayRef<const uint8_t> code, uint32_t offset) {
120 return GetInsn32(ArrayRef<const uint8_t>(*code), offset);
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 111 ArrayRef<VariantMatcher> InnerMatchers) const;
295 bool isConvertibleTo(ArrayRef<ArgKind> Kinds, unsigned *Specificity) const;
  /external/clang/include/clang/Frontend/
Utils.h 82 llvm::ArrayRef<std::string> getDependencies() const { return Dependencies; }
183 createInvocationFromCommandLine(ArrayRef<const char *> Args,
  /external/llvm/bindings/go/llvm/
IRBindings.cpp 63 MDNode::get(*unwrap(C), ArrayRef<Metadata *>(unwrap(MDs), Count)));
69 ArrayRef<Metadata *>(unwrap(MDs), Count))
  /external/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 21 #include "llvm/ADT/ArrayRef.h"
145 ArrayRef<unsigned> regs() const {
222 ArrayRef<unsigned> RegsBeingSpilled = None);
TargetLoweringObjectFileImpl.h 95 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
154 ArrayRef<Module::ModuleFlagEntry> ModuleFlags,
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 208 BasicBlock *SplitBlockPredecessors(BasicBlock *BB, ArrayRef<BasicBlock *> Preds,
227 ArrayRef<BasicBlock *> Preds,

Completed in 1125 milliseconds

1 2 3 4 5 6 7 891011>>