Searched defs:VL (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/AST/
H A DDeclOpenMP.cpp31 ArrayRef<Expr *> VL) {
32 OMPThreadPrivateDecl *D = new (C, DC, VL.size() * sizeof(Expr *))
34 D->NumVars = VL.size();
35 D->setVars(VL);
48 void OMPThreadPrivateDecl::setVars(ArrayRef<Expr *> VL) { argument
49 assert(VL.size() == NumVars &&
52 std::copy(VL.begin(), VL.end(), Vars);
28 Create(ASTContext &C, DeclContext *DC, SourceLocation L, ArrayRef<Expr *> VL) argument
H A DCommentParser.cpp720 VerbatimLineComment *VL = S.actOnVerbatimLine(NameTok.getLocation(), local
725 return VL;
H A DCommentSema.cpp449 VerbatimLineComment *VL = new (Allocator) VerbatimLineComment( local
455 checkFunctionDeclVerbatimLine(VL);
456 checkContainerDeclVerbatimLine(VL);
457 return VL;
H A DStmt.cpp1129 ArrayRef<Expr *> VL) {
1132 sizeof(Expr *) * VL.size());
1134 EndLoc, VL.size());
1135 Clause->setVarRefs(VL);
1151 ArrayRef<Expr *> VL) {
1154 sizeof(Expr *) * VL.size());
1158 VL.size());
1159 Clause->setVarRefs(VL);
1175 ArrayRef<Expr *> VL) {
1178 sizeof(Expr *) * VL
1125 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1147 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1171 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1193 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1215 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, Expr *Step) argument
1240 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, Expr *A) argument
1261 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1283 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
1311 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Djet_test.cc42 #define VL VLOG(1) macro
74 VL << "x = " << x;
75 VL << "y = " << y;
80 VL << "z = " << z;
81 VL << "w = " << w;
88 VL << "z = " << z;
89 VL << "w = " << w;
96 VL << "z = " << z;
97 VL << "w = " << w;
104 VL << "
[all...]
/external/clang/include/clang/AST/
H A DOpenMPClause.h88 void setVarRefs(ArrayRef<Expr *> VL) { argument
89 assert(VL.size() == NumVars &&
92 VL.begin(), VL.end(),
692 /// \brief Creates clause with a list of variables \a VL.
698 /// \param VL List of references to the variables.
702 SourceLocation EndLoc, ArrayRef<Expr *> VL);
752 /// \brief Creates clause with a list of variables \a VL.
758 /// \param VL List of references to the variables.
762 SourceLocation EndLoc, ArrayRef<Expr *> VL);
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp118 /// \returns the parent basic block if all of the instructions in \p VL
120 static BasicBlock *getSameBlock(ArrayRef<Value *> VL) { argument
121 Instruction *I0 = dyn_cast<Instruction>(VL[0]);
125 for (int i = 1, e = VL.size(); i < e; i++) {
126 Instruction *I = dyn_cast<Instruction>(VL[i]);
136 /// \returns True if all of the values in \p VL are constants.
137 static bool allConstant(ArrayRef<Value *> VL) { argument
138 for (unsigned i = 0, e = VL.size(); i < e; ++i)
139 if (!isa<Constant>(VL[i]))
144 /// \returns True if all of the values in \p VL ar
145 isSplat(ArrayRef<Value *> VL) argument
182 isAltInst(ArrayRef<Value *> VL) argument
196 getSameOpcode(ArrayRef<Value *> VL) argument
213 propagateMetadata(Instruction *I, ArrayRef<Value *> VL) argument
245 getSameType(ArrayRef<Value *> VL) argument
256 CanReuseExtract(ArrayRef<Value *> VL) argument
286 reorderInputsAccordingToOpcode(ArrayRef<Value *> VL, SmallVectorImpl<Value *> &Left, SmallVectorImpl<Value *> &Right) argument
511 newTreeEntry(ArrayRef<Value *> VL, bool Vectorized) argument
641 buildTree_rec(ArrayRef<Value *> VL, unsigned Depth) argument
1084 DEBUG(dbgs() << "SLP: mismatched calls:" << *CI << "!=" << *VL[i] local
1142 ArrayRef<Value*> VL = E->Scalars; local
1413 getGatherCost(ArrayRef<Value *> VL) argument
1513 getLastIndex(ArrayRef<Value *> VL) argument
1524 getLastInstruction(ArrayRef<Value *> VL) argument
1537 setInsertPointAfterBundle(ArrayRef<Value *> VL) argument
1546 Gather(ArrayRef<Value *> VL, VectorType *Ty) argument
1589 vectorizeTree(ArrayRef<Value *> VL) argument
2262 hasValueBeenRAUWed(ArrayRef<Value *> &VL, SmallVectorImpl<WeakVH> &VH, unsigned SliceBegin, unsigned SliceSize) argument
2410 tryToVectorizeList(ArrayRef<Value *> VL, BoUpSLP &R, ArrayRef<Value *> BuildVector) argument
[all...]

Completed in 155 milliseconds