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

1 2

  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/
histogram.hpp 60 template <int BIN_COUNT, class Policy, class SrcPtr, typename ResType, class MaskPtr>
61 __host__ void gridHistogram_(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
80 template <int BIN_COUNT, class Policy, class SrcPtr, typename ResType>
81 __host__ void gridHistogram_(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
108 template <int BIN_COUNT, class SrcPtr, typename ResType, class MaskPtr>
109 __host__ void gridHistogram(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
114 template <int BIN_COUNT, class SrcPtr, typename ResType>
115 __host__ void gridHistogram(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
reduce.hpp 63 template <class Policy, class SrcPtr, typename ResType, class MaskPtr>
64 __host__ void gridCalcSum_(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
68 CV_StaticAssert( unsigned(VecTraits<src_type>::cn) == unsigned(VecTraits<ResType>::cn), "" );
85 template <class Policy, class SrcPtr, typename ResType>
86 __host__ void gridCalcSum_(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
90 CV_StaticAssert( unsigned(VecTraits<src_type>::cn) == unsigned(VecTraits<ResType>::cn), "" );
105 template <class Policy, class SrcPtr, typename ResType, class MaskPtr>
106 __host__ void gridFindMinVal_(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
109 dst.setTo(Scalar::all(std::numeric_limits<ResType>::max()), stream);
123 template <class Policy, class SrcPtr, typename ResType>
    [all...]
reduce_to_vec.hpp 145 template <class Reductor, class SrcPtr, typename ResType, class MaskPtr>
146 __host__ void gridReduceToRow(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
162 template <class Reductor, class SrcPtr, typename ResType>
163 __host__ void gridReduceToRow(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
177 template <class Reductor, class Policy, class SrcPtr, typename ResType, class MaskPtr>
178 __host__ void gridReduceToColumn_(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
194 template <class Reductor, class Policy, class SrcPtr, typename ResType>
195 __host__ void gridReduceToColumn_(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
219 template <class Reductor, class SrcPtr, typename ResType, class MaskPtr>
220 __host__ void gridReduceToColumn(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null()
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
histogram.hpp 56 template <int BIN_COUNT, int BLOCK_SIZE, class SrcPtr, typename ResType, class MaskPtr>
57 __global__ void histogram(const SrcPtr src, ResType* hist, const MaskPtr mask, const int rows, const int cols)
60 __shared__ ResType smem[BIN_COUNT];
86 const ResType histVal = smem[i];
93 template <int BIN_COUNT, class Policy, class SrcPtr, typename ResType, class MaskPtr>
94 __host__ void histogram(const SrcPtr& src, ResType* hist, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
reduce_to_row.hpp 57 template <class Reductor, int BLOCK_SIZE_X, int BLOCK_SIZE_Y, class SrcPtr, typename ResType, class MaskPtr>
58 __global__ void reduceToRow(const SrcPtr src, ResType* dst, const MaskPtr mask, const int rows, const int cols)
96 dst[x] = saturate_cast<ResType>(Reductor::result(smem[threadIdx.x * BLOCK_SIZE_X], rows));
99 template <class Reductor, class SrcPtr, typename ResType, class MaskPtr>
100 __host__ void reduceToRow(const SrcPtr& src, ResType* dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
minmaxloc.hpp 59 template <int BLOCK_SIZE, class SrcPtr, typename ResType, class MaskPtr>
60 __global__ void minMaxLoc_pass_1(const SrcPtr src, ResType* minVal, ResType* maxVal, int* minLoc, int* maxLoc, const MaskPtr mask, const int rows, const int cols, const int patch_y, const int patch_x)
62 __shared__ ResType sMinVal[BLOCK_SIZE];
63 __shared__ ResType sMaxVal[BLOCK_SIZE];
70 ResType myMin = numeric_limits<ResType>::max();
71 ResType myMax = -numeric_limits<ResType>::max();
81 const ResType srcVal = src(y, x)
    [all...]
reduce_to_column.hpp 95 template <class Reductor, int BLOCK_SIZE, class SrcPtr, typename ResType, class MaskPtr>
96 __global__ void reduceToColumn(const SrcPtr src, ResType* dst, const MaskPtr mask, const int cols)
121 dst[y] = saturate_cast<ResType>(Reductor::result(myVal, cols));
124 template <class Reductor, class Policy, class SrcPtr, typename ResType, class MaskPtr>
125 __host__ void reduceToColumn(const SrcPtr& src, ResType* dst, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
reduce.hpp 391 template <class Reductor, int BLOCK_SIZE, int PATCH_X, int PATCH_Y, class SrcPtr, typename ResType, class MaskPtr>
392 __global__ void reduce(const SrcPtr src, ResType* result, const MaskPtr mask, const int rows, const int cols)
415 template <class Reductor, class Policy, class SrcPtr, typename ResType, class MaskPtr>
416 __host__ void reduce(const SrcPtr& src, ResType* result, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
430 template <class Policy, class SrcPtr, typename ResType, class MaskPtr>
431 __host__ void sum(const SrcPtr& src, ResType* result, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
434 typedef typename VecTraits<ResType>::elem_type res_elem_type;
436 reduce<SumReductor<src_type, ResType>, Policy>(src, (res_elem_type*) result, mask, rows, cols, stream);
439 template <class Policy, class SrcPtr, typename ResType, class MaskPtr>
440 __host__ void minVal(const SrcPtr& src, ResType* result, const MaskPtr& mask, int rows, int cols, cudaStream_t stream
    [all...]
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 271 template<typename ResType>
272 void evalTo(ResType& res) const
280 res = Matrix<Scalar,ResType::RowsAtCompileTime,ResType::ColsAtCompileTime>::Map(reinterpret_cast<Scalar*>(x_cd->x), x_cd->nrow, x_cd->ncol);
  /external/robolectric/v3/
robolectric-resources-3.1-SNAPSHOT.jar 
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
CGStmtOpenMP.cpp     [all...]
CGBuiltin.cpp 355 getDefaultBuiltinObjectSizeResult(unsigned Type, llvm::IntegerType *ResType) {
356 return ConstantInt::get(ResType, (Type & 2) ? 0 : -1, /*isSigned=*/true);
361 llvm::IntegerType *ResType) {
364 return emitBuiltinObjectSize(E, Type, ResType);
365 return ConstantInt::get(ResType, ObjectSize, /*isSigned=*/true);
375 llvm::IntegerType *ResType) {
399 return getDefaultBuiltinObjectSizeResult(Type, ResType);
405 llvm::Type *Tys[] = {ResType, Builder.getInt8PtrTy(0)};
656 auto *ResType = cast<llvm::IntegerType>(ConvertType(E->getType()));
660 return RValue::get(emitBuiltinObjectSize(E->getArg(0), Type, ResType));
    [all...]
CodeGenFunction.h     [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-matchers.h     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/gmock/include/gmock/
gmock-matchers.h     [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 494 QualType ResType = Context.getCanonicalType(Getter->getReturnType());
495 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType))
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-packaging-plugin/0.20.0/
tycho-packaging-plugin-0.20.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 

Completed in 183 milliseconds

1 2