/external/opencv3/modules/cudev/include/opencv2/cudev/grid/ |
H A D | 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())
|
H A D | 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...] |
H A D | 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> [all...] |
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/ |
H A D | 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)
|
H A D | 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)
|
H A D | 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 srcVa [all...] |
H A D | 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)
|
H A D | 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* resul [all...] |
/external/eigen/Eigen/src/SPQRSupport/ |
H A D | 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/ |
H A D | robolectric-resources-3.1-SNAPSHOT.jar | META-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/shadows/ org/robolectric/manifest/ org/ ... |
/external/clang/lib/CodeGen/ |
H A D | TargetInfo.cpp | 2810 llvm::Type *ResType = nullptr; 2815 // If the low part is just padding, it takes no register, leave ResType 2833 ResType = GetINTEGERTypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0); 2837 if (Hi == NoClass && isa<llvm::IntegerType>(ResType)) { 2851 ResType = GetSSETypeAtOffset(CGT.ConvertType(RetTy), 0, RetTy, 0); 2857 ResType = llvm::Type::getX86_FP80Ty(getVMContext()); 2865 ResType = llvm::StructType::get(llvm::Type::getX86_FP80Ty(getVMContext()), 2901 ResType = GetByteVectorType(RetTy); 2923 ResType = GetX86_64ByValArgumentPair(ResType, HighPar [all...] |
H A D | CGStmtOpenMP.cpp | 2350 QualType SourceType, QualType ResType, 2352 switch (CGF.getEvaluationKind(ResType)) { 2355 convertToScalarValue(CGF, Value, SourceType, ResType, Loc)); 2357 auto Res = convertToComplexValue(CGF, Value, SourceType, ResType, Loc); 2349 convertToType(CodeGenFunction &CGF, RValue Value, QualType SourceType, QualType ResType, SourceLocation Loc) argument
|
H A D | CGBuiltin.cpp | 355 getDefaultBuiltinObjectSizeResult(unsigned Type, llvm::IntegerType *ResType) { argument 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())); local 660 return RValue::get(emitBuiltinObjectSize(E->getArg(0), Type, ResType)); 360 evaluateOrEmitBuiltinObjectSize(const Expr *E, unsigned Type, llvm::IntegerType *ResType) argument 374 emitBuiltinObjectSize(const Expr *E, unsigned Type, llvm::IntegerType *ResType) argument [all...] |
H A D | CodeGenFunction.h | 3084 llvm::IntegerType *ResType); 3090 llvm::IntegerType *ResType);
|
/external/google-breakpad/src/testing/include/gmock/ |
H A D | gmock-matchers.h | 1848 template <typename ArgType, typename ResType> 1849 struct CallableTraits<ResType(*)(ArgType)> { 1850 typedef ResType ResultType; 1851 typedef ResType(*StorageType)(ArgType); 1853 static void CheckIsValid(ResType(*f)(ArgType)) { 1858 static ResType Invoke(ResType(*f)(ArgType), T arg) {
|
/external/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 7708 QualType ResType = Operand->getType(); local 7709 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 7710 ResType = ResAtomicType->getValueType(); 7712 assert(ResType->isAnyPointerType() && !ResType->isDependentType()); 7713 QualType PointeeTy = ResType->getPointeeType(); 7729 QualType ResType = Operand->getType(); local 7730 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>()) 7731 ResType = ResAtomicType->getValueType(); 7733 if (!ResType 9685 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; local [all...] |
/external/gmock/include/gmock/ |
H A D | gmock-matchers.h | 2140 template <typename ArgType, typename ResType> 2141 struct CallableTraits<ResType(*)(ArgType)> { 2142 typedef ResType ResultType; 2143 typedef ResType(*StorageType)(ArgType); 2145 static void CheckIsValid(ResType(*f)(ArgType)) { 2150 static ResType Invoke(ResType(*f)(ArgType), T arg) {
|
/external/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 494 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); local 495 if (const char *MemoryManagementAttr = PropertyMemoryAttribute(Context, ResType))
|
/external/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 4883 Type *ResType = PFS.getFunction().getReturnType(); 4886 if (!ResType->isVoidTy()) 4888 getTypeString(ResType) + "'"); 4897 if (ResType != RV->getType()) 4899 getTypeString(ResType) + "'");
|
/external/clang/include/clang/AST/ |
H A D | Expr.h | 3162 CompoundAssignOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResType, argument 3166 : BinaryOperator(lhs, rhs, opc, ResType, VK, OK, OpLoc, fpContractable,
|
/external/clang/lib/AST/ |
H A D | ASTContext.cpp | 8211 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error, local 8248 return getFunctionNoProtoType(ResType, EI); 8254 return getFunctionType(ResType, ArgTypes, EPI);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
H A D | pdebuild.jar | META-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ... |