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

/external/clang/lib/AST/
H A DDeclOpenMP.cpp32 ArrayRef<Expr *> VL) {
34 new (C, DC, additionalSizeToAlloc<Expr *>(VL.size()))
36 D->NumVars = VL.size();
37 D->setVars(VL);
50 void OMPThreadPrivateDecl::setVars(ArrayRef<Expr *> VL) { argument
51 assert(VL.size() == NumVars &&
53 std::uninitialized_copy(VL.begin(), VL.end(), getTrailingObjects<Expr *>());
29 Create(ASTContext &C, DeclContext *DC, SourceLocation L, ArrayRef<Expr *> VL) argument
H A DOpenMPClause.cpp165 void OMPPrivateClause::setPrivateCopies(ArrayRef<Expr *> VL) { argument
166 assert(VL.size() == varlist_size() &&
168 std::copy(VL.begin(), VL.end(), varlist_end());
174 ArrayRef<Expr *> VL, ArrayRef<Expr *> PrivateVL) {
176 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(2 * VL.size()));
178 new (Mem) OMPPrivateClause(StartLoc, LParenLoc, EndLoc, VL.size());
179 Clause->setVarRefs(VL);
190 void OMPFirstprivateClause::setPrivateCopies(ArrayRef<Expr *> VL) { argument
191 assert(VL
172 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> PrivateVL) argument
196 setInits(ArrayRef<Expr *> VL) argument
203 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> PrivateVL, ArrayRef<Expr *> InitVL, Stmt *PreInit) argument
251 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, ArrayRef<Expr *> DstExprs, ArrayRef<Expr *> AssignmentOps, Stmt *PreInit, Expr *PostUpdate) argument
274 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
315 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, OpenMPLinearClauseKind Modifier, SourceLocation ModifierLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep, Stmt *PreInit, Expr *PostUpdate) argument
351 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, Expr *A) argument
390 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, ArrayRef<Expr *> DstExprs, ArrayRef<Expr *> AssignmentOps) argument
431 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> SrcExprs, ArrayRef<Expr *> DstExprs, ArrayRef<Expr *> AssignmentOps) argument
478 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, ArrayRef<Expr *> Privates, ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs, ArrayRef<Expr *> ReductionOps, Stmt *PreInit, Expr *PostUpdate) argument
504 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
521 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, OpenMPDependClauseKind DepKind, SourceLocation DepLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL) argument
735 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
753 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL) argument
[all...]
H A DCommentParser.cpp720 VerbatimLineComment *VL = S.actOnVerbatimLine(NameTok.getLocation(), local
725 return VL;
H A DCommentSema.cpp447 VerbatimLineComment *VL = new (Allocator) VerbatimLineComment( local
453 checkFunctionDeclVerbatimLine(VL);
454 checkContainerDeclVerbatimLine(VL);
455 return VL;
/external/llvm/include/llvm/CodeGen/PBQP/
H A DReductionRules.h151 unsigned VL = V.getLength(); local
154 if (VL <= 1)
159 for (unsigned i = 1; i < VL; ++i)
/external/llvm/lib/Analysis/
H A DVectorUtils.cpp451 /// \returns \p I after propagating metadata from \p VL.
452 Instruction *llvm::propagateMetadata(Instruction *Inst, ArrayRef<Value *> VL) { argument
453 Instruction *I0 = cast<Instruction>(VL[0]);
462 for (int J = 1, E = VL.size(); MD && J != E; ++J) {
463 const Instruction *IJ = cast<Instruction>(VL[J]);
/external/llvm/lib/CodeGen/
H A DLiveDebugValues.cpp267 const VarLoc &VL = VarLocIDs[VLL]; local
268 Out << " Var: " << VL.Var.getVar()->getName();
270 VL.dump();
297 VarLoc VL(MI);
298 unsigned ID = VarLocIDs.insert(VL);
299 OpenRanges.insert(ID, VL.Var);
/external/libpng/contrib/tools/
H A Dpngcp.c314 # define VL(oname, name, type, search)\ macro
316 # define VLO(oname, name, search) VL(oname, name, OPTION, search)
360 # define VLL(name, search) VL(#name, name, LIST, search)
368 # undef VL macro
/external/clang/include/clang/AST/
H A DOpenMPClause.h136 void setVarRefs(ArrayRef<Expr *> VL) { argument
137 assert(VL.size() == NumVars &&
139 std::copy(VL.begin(), VL.end(),
1210 /// \param VL List of references.
1211 void setPrivateCopies(ArrayRef<Expr *> VL);
1223 /// \brief Creates clause with a list of variables \a VL.
1229 /// \param VL List of references to the variables.
1234 SourceLocation EndLoc, ArrayRef<Expr *> VL,
1309 /// \param VL Lis
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp113 /// \returns the parent basic block if all of the instructions in \p VL
115 static BasicBlock *getSameBlock(ArrayRef<Value *> VL) { argument
116 Instruction *I0 = dyn_cast<Instruction>(VL[0]);
120 for (int i = 1, e = VL.size(); i < e; i++) {
121 Instruction *I = dyn_cast<Instruction>(VL[i]);
131 /// \returns True if all of the values in \p VL are constants.
132 static bool allConstant(ArrayRef<Value *> VL) { argument
133 for (Value *i : VL)
139 /// \returns True if all of the values in \p VL are identical.
140 static bool isSplat(ArrayRef<Value *> VL) { argument
175 isAltInst(ArrayRef<Value *> VL) argument
189 getSameOpcode(ArrayRef<Value *> VL) argument
208 propagateIRFlags(Value *I, ArrayRef<Value *> VL) argument
224 getSameType(ArrayRef<Value *> VL) argument
465 newTreeEntry(ArrayRef<Value *> VL, bool Vectorized) argument
969 buildTree_rec(ArrayRef<Value *> VL, unsigned Depth) argument
1379 DEBUG(dbgs() << "SLP: mismatched calls:" << *CI << "!=" << *VL[i] local
1404 << *VL[i] << '\\n'); local
1485 canReuseExtract(ArrayRef<Value *> VL, unsigned Opcode) const argument
1529 ArrayRef<Value*> VL = E->Scalars; local
1906 getGatherCost(ArrayRef<Value *> VL) argument
1925 reorderAltShuffleOperands(ArrayRef<Value *> VL, SmallVectorImpl<Value *> &Left, SmallVectorImpl<Value *> &Right) argument
2039 reorderInputsAccordingToOpcode(ArrayRef<Value *> VL, SmallVectorImpl<Value *> &Left, SmallVectorImpl<Value *> &Right) argument
2126 setInsertPointAfterBundle(ArrayRef<Value *> VL) argument
2134 Gather(ArrayRef<Value *> VL, VectorType *Ty) argument
2177 vectorizeTree(ArrayRef<Value *> VL) argument
2804 tryScheduleBundle(ArrayRef<Value *> VL, BoUpSLP *SLP) argument
2891 cancelScheduling(ArrayRef<Value *> VL) argument
3575 hasValueBeenRAUWed(ArrayRef<Value *> VL, ArrayRef<WeakVH> VH, unsigned SliceBegin, unsigned SliceSize) argument
3743 tryToVectorizeList(ArrayRef<Value *> VL, BoUpSLP &R, ArrayRef<Value *> BuildVector, bool allowReorder) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp4014 unsigned VL = N->getValueType(0).getVectorNumElements(); local
4016 unsigned ElSize = VBits / VL;
4033 unsigned VL = N->getValueType(0).getVectorNumElements(); local
4035 unsigned ElSize = VBits / VL;

Completed in 360 milliseconds