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 720 VerbatimLineComment *VL = S.actOnVerbatimLine(NameTok.getLocation(),
725 return VL;
CommentSema.cpp 449 VerbatimLineComment *VL = new (Allocator) VerbatimLineComment(
455 checkFunctionDeclVerbatimLine(VL);
456 checkContainerDeclVerbatimLine(VL);
457 return VL;
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 118 /// \returns the parent basic block if all of the instructions in \p VL
120 static BasicBlock *getSameBlock(ArrayRef<Value *> VL) {
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) {
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 are identical
    [all...]

Completed in 86 milliseconds