HomeSort by relevance Sort by last modified time
    Searched defs:VL (Results 1 - 6 of 6) 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/llvm/include/llvm/CodeGen/PBQP/
ReductionRules.h 151 unsigned VL = V.getLength();
154 if (VL <= 1)
159 for (unsigned i = 1; i < VL; ++i)
  /toolchain/binutils/binutils-2.25/include/opcode/
convex.h 46 #define VL 5
73 "vl",
505 {0,0,lr,VL,A,0}, /* mov */
506 {0,0,rxl,A,VL,0}, /* mov */
509 {0,7,lr,VL,S,0}, /* mov.w */
510 {0,7,rxl,S,VL,0}, /* mov.w */
577 {18,7,iml,VL,0,0}, /* ld.w */
    [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 117 /// \returns the parent basic block if all of the instructions in \p VL
119 static BasicBlock *getSameBlock(ArrayRef<Value *> VL) {
120 Instruction *I0 = dyn_cast<Instruction>(VL[0]);
124 for (int i = 1, e = VL.size(); i < e; i++) {
125 Instruction *I = dyn_cast<Instruction>(VL[i]);
135 /// \returns True if all of the values in \p VL are constants.
136 static bool allConstant(ArrayRef<Value *> VL) {
137 for (unsigned i = 0, e = VL.size(); i < e; ++i)
138 if (!isa<Constant>(VL[i]))
143 /// \returns True if all of the values in \p VL are identical
    [all...]

Completed in 3376 milliseconds