HomeSort by relevance Sort by last modified time
    Searched defs:VL (Results 1 - 4 of 4) sorted by null

  /external/ceres-solver/internal/ceres/
jet_test.cc 42 #define VL VLOG(1)
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 << "z = " << z
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 699 VerbatimLineComment *VL = S.actOnVerbatimLine(NameTok.getLocation(),
704 return VL;
CommentSema.cpp 462 VerbatimLineComment *VL = new (Allocator) VerbatimLineComment(
468 checkFunctionDeclVerbatimLine(VL);
469 checkContainerDeclVerbatimLine(VL);
470 return VL;
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 127 /// \returns the parent basic block if all of the instructions in \p VL
129 static BasicBlock *getSameBlock(ArrayRef<Value *> VL) {
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) {
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 are identical
    [all...]

Completed in 172 milliseconds