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

/external/clang/lib/AST/
H A DDeclOpenMP.cpp31 ArrayRef<Expr *> VL) {
33 (VL.size() * sizeof(Expr *));
38 D->NumVars = VL.size();
39 D->setVars(VL);
55 void OMPThreadPrivateDecl::setVars(ArrayRef<Expr *> VL) { argument
56 assert(VL.size() == NumVars &&
59 std::copy(VL.begin(), VL.end(), Vars);
28 Create(ASTContext &C, DeclContext *DC, SourceLocation L, ArrayRef<Expr *> VL) argument
H A DCommentParser.cpp699 VerbatimLineComment *VL = S.actOnVerbatimLine(NameTok.getLocation(), local
704 return VL;
H A DCommentSema.cpp462 VerbatimLineComment *VL = new (Allocator) VerbatimLineComment( local
468 checkFunctionDeclVerbatimLine(VL);
469 checkContainerDeclVerbatimLine(VL);
470 return VL;
H A DStmt.cpp1127 ArrayRef<Expr *> VL) {
1128 void *Mem = C.Allocate(sizeof(OMPPrivateClause) + sizeof(Expr *) * VL.size(),
1131 EndLoc, VL.size());
1132 Clause->setVarRefs(VL);
1123 Create(ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
/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 DStmtOpenMP.h87 void setVarRefs(ArrayRef<Expr *> VL) { argument
88 assert(VL.size() == NumVars &&
90 std::copy(VL.begin(), VL.end(),
223 /// \brief Creates clause with a list of variables \a VL.
229 /// \param VL List of references to the variables.
234 ArrayRef<Expr *> VL);
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp127 /// \returns the parent basic block if all of the instructions in \p VL
129 static BasicBlock *getSameBlock(ArrayRef<Value *> VL) { argument
130 Instruction *I0 = dyn_cast<Instruction>(VL[0]);
134 for (int i = 1, e = VL.size(); i < e; i++) {
135 Instruction *I = dyn_cast<Instruction>(VL[i]);
145 /// \returns True if all of the values in \p VL are constants.
146 static bool allConstant(ArrayRef<Value *> VL) { argument
147 for (unsigned i = 0, e = VL.size(); i < e; ++i)
148 if (!isa<Constant>(VL[i]))
153 /// \returns True if all of the values in \p VL ar
154 isSplat(ArrayRef<Value *> VL) argument
163 getSameOpcode(ArrayRef<Value *> VL) argument
178 getSameType(ArrayRef<Value *> VL) argument
189 CanReuseExtract(ArrayRef<Value *> VL) argument
322 isSame(ArrayRef<Value *> VL) argument
344 newTreeEntry(ArrayRef<Value *> VL, bool Vectorized) argument
457 buildTree_rec(ArrayRef<Value *> VL, unsigned Depth) argument
795 ArrayRef<Value*> VL = E->Scalars; local
947 getGatherCost(ArrayRef<Value *> VL) argument
1081 getLastIndex(ArrayRef<Value *> VL) argument
1092 getLastInstruction(ArrayRef<Value *> VL) argument
1105 Gather(ArrayRef<Value *> VL, VectorType *Ty) argument
1135 alreadyVectorized(ArrayRef<Value *> VL) argument
1145 vectorizeTree(ArrayRef<Value *> VL) argument
1791 tryToVectorizeList(ArrayRef<Value *> VL, BoUpSLP &R) argument
[all...]

Completed in 1156 milliseconds