Searched defs:RK (Results 1 - 18 of 18) sorted by relevance

/external/llvm/utils/TableGen/
H A DCTagsEmitter.cpp96 void EmitCTags(RecordKeeper &RK, raw_ostream &OS) { CTagsEmitter(RK).run(OS); } argument
H A DCallingConvEmitter.cpp259 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS) { argument
261 CallingConvEmitter(RK).run(OS);
H A DCodeEmitterGen.cpp335 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS) { argument
337 CodeEmitterGen(RK).run(OS);
H A DDAGISelEmitter.cpp170 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS) { argument
171 DAGISelEmitter(RK).run(OS);
H A DCodeGenSchedule.cpp89 CodeGenSchedModels::CodeGenSchedModels(RecordKeeper &RK, argument
91 Records(RK), Target(TGT) {
H A DDFAPacketizerEmitter.cpp502 void EmitDFAPacketizer(RecordKeeper &RK, raw_ostream &OS) { argument
504 DFAPacketizerEmitter(RK).run(OS);
H A DInstrInfoEmitter.cpp601 void EmitInstrInfo(RecordKeeper &RK, raw_ostream &OS) { argument
602 InstrInfoEmitter(RK).run(OS);
603 EmitMapTable(RK, OS);
H A DPseudoLoweringEmitter.cpp298 void EmitPseudoLowering(RecordKeeper &RK, raw_ostream &OS) { argument
299 PseudoLoweringEmitter(RK).run(OS);
H A DIntrinsicEmitter.cpp522 ModRefKind RK = getModRefKind(*R); local
523 if (LK != RK) return (LK > RK);
847 void llvm::EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly) {
848 IntrinsicEmitter(RK, TargetOnly).run(OS);
H A DRegisterInfoEmitter.cpp1354 void EmitRegisterInfo(RecordKeeper &RK, raw_ostream &OS) { argument
1355 RegisterInfoEmitter(RK).run(OS);
H A DAsmWriterEmitter.cpp1114 void EmitAsmWriter(RecordKeeper &RK, raw_ostream &OS) { argument
1116 AsmWriterEmitter(RK).run(OS);
H A DSubtargetEmitter.cpp1565 void EmitSubtarget(RecordKeeper &RK, raw_ostream &OS) { argument
1566 CodeGenTarget CGTarget(RK);
1567 SubtargetEmitter(RK, CGTarget).run(OS);
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp178 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS, argument
180 ClangASTNodesEmitter(RK, N, S).run(OS);
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_gemm_kernel.h36 RK = NumberOfRegisters>=16 ? 4 : 2, // register blocking enumerator in enum:Eigen::internal::__anon20998
40 Index d_end = (d/RK)*RK; // number of columns of A (rows of B) suitable for full register blocking
70 for(Index k=0; k<d_end; k+=RK)
73 // load and expand a RN x RK block of B
77 if(RK==4) b20 = pset1<Packet>(Bc0[2]);
78 if(RK==4) b30 = pset1<Packet>(Bc0[3]);
81 if(RK==4) b21 = pset1<Packet>(Bc1[2]);
82 if(RK==4) b31 = pset1<Packet>(Bc1[3]);
96 if(RK
[all...]
/external/clang/include/clang/Sema/
H A DLookup.h508 void setRedeclarationKind(Sema::RedeclarationKind RK) { argument
509 Redecl = RK;
510 AllowHidden = (RK == Sema::ForRedeclaration);
/external/clang/include/clang/AST/
H A DComment.h327 RenderKind RK,
331 InlineCommandCommentBits.RenderKind = RK;
324 InlineCommandComment(SourceLocation LocBegin, SourceLocation LocEnd, unsigned CommandID, RenderKind RK, ArrayRef<Argument> Args) argument
/external/llvm/lib/TableGen/
H A DRecord.cpp1997 raw_ostream &llvm::operator<<(raw_ostream &OS, const RecordKeeper &RK) { argument
1999 const std::map<std::string, Record*> &Classes = RK.getClasses();
2005 const std::map<std::string, Record*> &Defs = RK.getDefs();
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2485 LoopVectorizationLegality::MinMaxReductionKind RK,
2489 switch (RK) {
2513 if (RK == LoopVectorizationLegality::MRK_FloatMin ||
2514 RK == LoopVectorizationLegality::MRK_FloatMax)
2484 createMinMaxOp(IRBuilder< &Builder, LoopVectorizationLegality::MinMaxReductionKind RK, Value *Left, Value *Right) argument

Completed in 377 milliseconds