HomeSort by relevance Sort by last modified time
    Searched refs:DstType (Results 1 - 25 of 50) sorted by null

1 2

  /system/connectivity/wifilogd/
local_utils.h 112 template <typename SrcType, typename DstType, SrcType MinAsSrcType,
113 SrcType MaxAsSrcType, DstType MinAsDstType, DstType MaxAsDstType>
114 DstType SafelyClamp(SrcType input) {
117 static_assert(std::is_integral<DstType>::value,
147 // Hence, the value to be returned must be valid for DstType, and the
149 return static_cast<DstType>(input);
  /external/gemmlowp/internal/
output_sse.h 106 template <typename DstType>
107 struct StoreFinalOutputImpl<RegBlockInt32<4, 1>, DstType> {
108 static void Run(const RegBlockInt32<4, 1>& src, DstType* dst, int row,
110 if (DstType::kOrder == MapOrder::ColMajor) {
121 template <typename DstType>
122 struct StoreFinalOutputImpl<RegBlockInt32<8, 1>, DstType> {
123 static void Run(const RegBlockInt32<8, 1>& src, DstType* dst, int row,
125 if (DstType::kOrder == MapOrder::ColMajor) {
155 template <typename DstType>
156 struct StoreFinalOutputImpl<RegBlockInt32<4, 4>, DstType> {
    [all...]
output_neon.h 110 template <typename DstType>
111 struct StoreFinalOutputImpl<RegBlockInt32<8, 1>, DstType> {
112 static void Run(const RegBlockInt32<8, 1>& src, DstType* dst, int row,
114 if (DstType::kOrder == MapOrder::ColMajor) {
145 template <typename DstType>
146 struct StoreFinalOutputImpl<RegBlockInt32<4, 4>, DstType> {
147 static void Run(const RegBlockInt32<4, 4>& src, DstType* dst, int row,
150 DstType::kOrder == MapOrder::ColMajor ? src : Transpose(src);
159 template <typename DstType>
160 struct StoreFinalOutputImpl<RegBlockInt32<8, 4>, DstType> {
    [all...]
dispatch_gemm_shape.h 29 typedef T DstType;
34 using TransposeType = typename TransposeImpl<T>::DstType;
58 typedef VectorMap<Scalar, TransposedShape> DstType;
59 static DstType Run(const SrcType& src) {
60 return DstType(src.data(), src.size());
68 typedef MatrixMap<Scalar, TransposedOrder> DstType;
69 static DstType Run(const SrcType& src) {
70 return DstType(src.data(), src.cols(), src.rows(), src.stride());
78 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<TransposedShape> DstType;
79 static DstType Run(const SrcType& src)
    [all...]
output.h 366 template <typename RegisterBlockType, typename DstType>
372 template <typename ScalarType, int Rows, int Cols, typename DstType>
373 struct StoreFinalOutputImpl<RegisterBlock<ScalarType, Rows, Cols>, DstType> {
375 static void Run(const RegisterBlockType& src, DstType* dst, int row,
389 template <typename RegisterBlockType, typename DstType>
390 void StoreFinalOutput(RegisterBlockType src, DstType* dst, int row, int col) {
391 StoreFinalOutputImpl<RegisterBlockType, DstType>::Run(src, dst, row, col);
403 template <typename DstType>
404 void Execute(InputType input, DstType* dst, int src_global_row,
412 typedef typename DstType::Scalar ScalarDstType
    [all...]
unpack.h 91 typename OutputPipelineExecutorType, typename DstType>
93 const OutputPipelineExecutorType& executor, DstType* dst,
  /external/eigen/Eigen/src/SparseCore/
SparseTriangularView.h 50 template<typename RhsType, typename DstType>
52 EIGEN_STRONG_INLINE void _solve_impl(const RhsType &rhs, DstType &dst) const {
53 if(!(internal::is_same<RhsType,DstType>::value && internal::extract_data(dst) == internal::extract_data(rhs)))
  /external/skia/src/shaders/
SkShaderBase.h 57 enum DstType {
63 DstType dstType, SkColorSpace* dstColorSpace)
67 , fPreferredDstType(dstType)
73 const DstType fPreferredDstType; // the "natural" client dest type
  /external/eigen/Eigen/src/SVD/
SVDBase.h 214 template<typename RhsType, typename DstType>
216 void _solve_impl(const RhsType &rhs, DstType &dst) const;
258 template<typename RhsType, typename DstType>
259 void SVDBase<Derived>::_solve_impl(const RhsType &rhs, DstType &dst) const
  /external/deqp/framework/randomshaders/
rsgExpression.cpp 512 template <typename SrcType, typename DstType>
513 inline DstType convert (SrcType src)
516 return Scalar::min<DstType>().template as<DstType>();
518 return Scalar::max<DstType>().template as<DstType>();
520 return DstType(src);
542 template <typename SrcType, typename DstType>
543 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax
    [all...]
  /external/eigen/Eigen/src/LU/
FullPivLU.h 413 template<typename RhsType, typename DstType>
415 void _solve_impl(const RhsType &rhs, DstType &dst) const;
417 template<bool Conjugate, typename RhsType, typename DstType>
419 void _solve_impl_transposed(const RhsType &rhs, DstType &dst) const;
746 template<typename RhsType, typename DstType>
747 void FullPivLU<_MatrixType>::_solve_impl(const RhsType &rhs, DstType &dst) const
794 template<bool Conjugate, typename RhsType, typename DstType>
795 void FullPivLU<_MatrixType>::_solve_impl_transposed(const RhsType &rhs, DstType &dst) const
    [all...]
PartialPivLU.h 224 template<typename RhsType, typename DstType>
226 void _solve_impl(const RhsType &rhs, DstType &dst) const {
246 template<bool Conjugate, typename RhsType, typename DstType>
248 void _solve_impl_transposed(const RhsType &rhs, DstType &dst) const {
  /external/eigen/Eigen/src/QR/
CompleteOrthogonalDecomposition.h 369 template <typename RhsType, typename DstType>
370 EIGEN_DEVICE_FUNC void _solve_impl(const RhsType& rhs, DstType& dst) const;
491 template <typename RhsType, typename DstType>
493 const RhsType& rhs, DstType& dst) const {
HouseholderQR.h 215 template<typename RhsType, typename DstType>
217 void _solve_impl(const RhsType &rhs, DstType &dst) const;
349 template<typename RhsType, typename DstType>
350 void HouseholderQR<_MatrixType>::_solve_impl(const RhsType &rhs, DstType &dst) const
ColPivHouseholderQR.h 418 template<typename RhsType, typename DstType>
420 void _solve_impl(const RhsType &rhs, DstType &dst) const;
584 template<typename RhsType, typename DstType>
585 void ColPivHouseholderQR<_MatrixType>::_solve_impl(const RhsType &rhs, DstType &dst) const
FullPivHouseholderQR.h 397 template<typename RhsType, typename DstType>
399 void _solve_impl(const RhsType &rhs, DstType &dst) const;
541 template<typename RhsType, typename DstType>
542 void FullPivHouseholderQR<_MatrixType>::_solve_impl(const RhsType &rhs, DstType &dst) const
  /external/skia/tools/
ok.cpp 181 struct DstType {
185 static std::vector<DstType> dst_types;
345 dst_types.push_back(DstType{name, help, factory});
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 260 template<typename RhsType, typename DstType>
262 void _solve_impl(const RhsType &rhs, DstType &dst) const;
557 template<typename RhsType, typename DstType>
558 void LDLT<_MatrixType,_UpLo>::_solve_impl(const RhsType &rhs, DstType &dst) const
LLT.h 202 template<typename RhsType, typename DstType>
204 void _solve_impl(const RhsType &rhs, DstType &dst) const;
472 template<typename RhsType, typename DstType>
473 void LLT<_MatrixType,_UpLo>::_solve_impl(const RhsType &rhs, DstType &dst) const
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 146 Value *Src, QualType SrcType, QualType DstType,
599 QualType DstType, llvm::Type *DstTy, SourceLocation Loc) {
610 assert(DstType->isFloatingType());
614 APFloat::getLargest(CGF.getContext().getFloatTypeSemantics(DstType));
640 unsigned Width = CGF.getContext().getIntWidth(DstType);
641 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType();
698 if (CGF.getContext().getFloatingTypeOrder(OrigSrcType, DstType) != 1)
705 CGF.getContext().getFloatTypeSemantics(DstType);
725 CGF.EmitCheckTypeDescriptor(DstType)};
733 QualType DstType,
    [all...]
  /external/skia/src/core/
SkBlitter.h 151 static SkShaderBase::ContextRec::DstType PreferredShaderDest(const SkImageInfo&);
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]

Completed in 781 milliseconds

1 2