HomeSort by relevance Sort by last modified time
    Searched refs:VectorType (Results 101 - 125 of 239) sorted by null

1 2 3 45 6 7 8 910

  /external/eigen/test/
basicstuff.cpp 18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
31 VectorType v1 = VectorType::Random(rows),
32 vzero = VectorType::Zero(rows);
product_trmv.cpp 17 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
26 VectorType v1 = VectorType::Random(rows);
array_for_matrix.cpp 134 template<typename VectorType> void lpNorm(const VectorType& v)
137 VectorType u = VectorType::Random(v.size());
142 VERIFY_IS_APPROX(numext::pow(u.template lpNorm<5>(), typename VectorType::RealScalar(5)), u.array().abs().pow(5).sum());
190 typedef Matrix<Scalar,Dynamic,1> VectorType;
196 VectorType v(rows);
triangular.cpp 18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
31 VectorType v2 = VectorType::Random(rows);
  /external/eigen/test/eigen2/
eigen2_qr.cpp 23 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
eigen2_eigensolver.cpp 27 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
110 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
  /external/gemmlowp/internal/
output.h 189 template <typename VectorType>
190 struct OutputStageEvalImpl<OutputStageBiasAddition<VectorType>,
194 typedef OutputStageBiasAddition<VectorType> OutputStage;
199 if (VectorType::kShape == VectorShape::Row) {
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 46 typedef Matrix<Scalar,Dynamic,1> VectorType;
234 VectorType m_diag; // the diagonal coefficients (LDLT mode)
316 typedef Matrix<Scalar,Dynamic,1> VectorType;
405 typedef Matrix<Scalar,Dynamic,1> VectorType;
418 inline const VectorType vectorD() const {
487 typedef Matrix<Scalar,Dynamic,1> VectorType;
517 inline const VectorType vectorD() const {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 261 auto VT = cast<VectorType>(CDV->getType());
278 auto VT = cast<VectorType>(Vec->getType());
313 VectorType *SrcTy = cast<VectorType>(II.getArgOperand(0)->getType());
314 VectorType *DstTy = cast<VectorType>(II.getType());
331 VectorType *VecTy = cast<VectorType>(II.getType());
435 VectorType *ShufTy = VectorType::get(IntTy8, 16)
    [all...]
InstCombineCasts.cpp 451 !isa<VectorType>(VecInput->getType()))
454 VectorType *VecType = cast<VectorType>(VecInput->getType());
466 VecType = VectorType::get(DestType, NumVecElts);
    [all...]
InstCombineSimplifyDemanded.cpp 451 if (VectorType *DstVTy = dyn_cast<VectorType>(I->getType())) {
452 if (VectorType *SrcVTy =
453 dyn_cast<VectorType>(I->getOperand(0)->getType())) {
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 203 VectorType *VTp = cast<VectorType>(Tp);
265 return VectorType::get(Ty, width);
433 Ran->Rand() % cast<VectorType>(Val0->getType())->getNumElements()),
446 unsigned Width = cast<VectorType>(Val0->getType())->getNumElements();
476 Ran->Rand() % cast<VectorType>(Val0->getType())->getNumElements()),
493 VectorType *VecTy = cast<VectorType>(VTy);
582 unsigned NumElem = cast<VectorType>(Val0->getType())->getNumElements();
583 CondTy = VectorType::get(CondTy, NumElem)
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
CGExprScalar.cpp 820 unsigned NumElements = cast<llvm::VectorType>(DstTy)->getNumElements();
825 if (isa<llvm::VectorType>(SrcTy) ||
826 isa<llvm::VectorType>(DstTy))
    [all...]
  /external/clang/lib/AST/
TypePrinter.cpp 537 void TypePrinter::printVectorBefore(const VectorType *T, raw_ostream &OS) {
539 case VectorType::AltiVecPixel:
542 case VectorType::AltiVecBool:
546 case VectorType::AltiVecVector:
550 case VectorType::NeonVector:
555 case VectorType::NeonPolyVector:
560 case VectorType::GenericVector: {
573 void TypePrinter::printVectorAfter(const VectorType *T, raw_ostream &OS) {
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
ConstantsContext.h 103 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
146 : ConstantExpr(VectorType::get(
147 cast<VectorType>(C1->getType())->getElementType(),
148 cast<VectorType>(C3->getType())->getNumElements()),
365 typedef VectorType TypeClass;
DataLayout.cpp 493 unsigned Align = getTypeAllocSize(cast<VectorType>(Ty)->getElementType());
494 Align *= cast<VectorType>(Ty)->getNumElements();
709 if (VectorType *VecTy = dyn_cast<VectorType>(Ty))
710 return VectorType::get(IntTy, VecTy->getNumElements());
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 122 size_t getTypeSize(VectorType * const VT, bool dereferencePtr = false);
479 const VectorType *VT = dyn_cast<VectorType>(aType);
724 const VectorType *VT = dyn_cast<VectorType>(aType);
858 y = dyn_cast<VectorType>(type)->getNumElements(); x < y; ++x) {
899 y = dyn_cast<VectorType>(type)->getNumElements(); x < y; ++x) {
    [all...]
  /external/eigen/Eigen/src/Geometry/
RotationBase.h 38 typedef Matrix<Scalar,Dim,1> VectorType;
93 inline VectorType _transformVector(const OtherVectorType& v) const
  /external/llvm/include/llvm/IR/
DataLayout.h 544 VectorType *VTy = cast<VectorType>(Ty);
  /external/llvm/lib/Target/AMDGPU/
R600TextureIntrinsicsReplacer.cpp 217 V4f32Type = VectorType::get(FloatType, 4);
218 V4i32Type = VectorType::get(Int32Type, 4);
AMDGPUPromoteAlloca.cpp 104 static VectorType *arrayTypeToVecType(Type *ArrayTy) {
105 return VectorType::get(ArrayTy->getArrayElementType(),
198 VectorType *VectorTy = arrayTypeToVecType(AllocaTy);
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
  /external/llvm/unittests/IR/
ConstantsTest.cpp 132 VectorType *Int8PtrVecTy = VectorType::get(Int8PtrTy, 4);
133 VectorType *Int32PtrVecTy = VectorType::get(Int32PtrTy, 4);
134 VectorType *Int64VecTy = VectorType::get(Int64Ty, 4);
188 Constant *P6 = ConstantExpr::getBitCast(P4, VectorType::get(Int16Ty, 2));

Completed in 367 milliseconds

1 2 3 45 6 7 8 910