HomeSort by relevance Sort by last modified time
    Searched full:__host__ (Results 26 - 50 of 103) sorted by null

12 3 4 5

  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/
split_merge.hpp 64 __host__ void gridMerge_(const SrcPtrTuple& src, GpuMat_<DstType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
83 __host__ void gridMerge_(const SrcPtrTuple& src, const GlobPtrSz<DstType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
101 __host__ void gridMerge_(const SrcPtrTuple& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null())
118 __host__ void gridMerge_(const SrcPtrTuple& src, const GlobPtrSz<DstType>& dst, Stream& stream = Stream::Null())
135 __host__ void gridSplit_(const SrcPtr& src, const tuple< GpuMat_<DstType>&, GpuMat_<DstType>& >& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
155 __host__ void gridSplit_(const SrcPtr& src, GpuMat_<DstType> (&dst)[2], const MaskPtr& mask, Stream& stream = Stream::Null())
175 __host__ void gridSplit_(const SrcPtr& src, GlobPtrSz<DstType> (&dst)[2], const MaskPtr& mask, Stream& stream = Stream::Null())
194 __host__ void gridSplit_(const SrcPtr& src, const tuple< GpuMat_<DstType>&, GpuMat_<DstType>& >& dst, Stream& stream = Stream::Null())
212 __host__ void gridSplit_(const SrcPtr& src, GpuMat_<DstType> (&dst)[2], Stream& stream = Stream::Null())
230 __host__ void gridSplit_(const SrcPtr& src, GlobPtrSz<DstType> (&dst)[2], Stream& stream = Stream::Null()
    [all...]
copy.hpp 64 __host__ void gridCopy_(const SrcPtr& src, GpuMat_<DstType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
77 __host__ void gridCopy_(const SrcPtr& src, const GlobPtrSz<DstType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
89 __host__ void gridCopy_(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null())
100 __host__ void gridCopy_(const SrcPtr& src, const GlobPtrSz<DstType>& dst, Stream& stream = Stream::Null())
111 __host__ void gridCopy_(const SrcPtrTuple& src, const tuple< GpuMat_<D0>&, GpuMat_<D1>& >& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
131 __host__ void gridCopy_(const SrcPtrTuple& src, const tuple< GlobPtrSz<D0>, GlobPtrSz<D1> >& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
150 __host__ void gridCopy_(const SrcPtrTuple& src, const tuple< GpuMat_<D0>&, GpuMat_<D1>& >& dst, Stream& stream = Stream::Null())
168 __host__ void gridCopy_(const SrcPtrTuple& src, const tuple< GlobPtrSz<D0>, GlobPtrSz<D1> >& dst, Stream& stream = Stream::Null())
186 __host__ void gridCopy_(const SrcPtrTuple& src, const tuple< GpuMat_<D0>&, GpuMat_<D1>&, GpuMat_<D2>& >& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
207 __host__ void gridCopy_(const SrcPtrTuple& src, const tuple< GlobPtrSz<D0>, GlobPtrSz<D1>, GlobPtrSz<D2> >& (…)
    [all...]
histogram.hpp 61 __host__ void gridHistogram_(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
81 __host__ void gridHistogram_(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
109 __host__ void gridHistogram(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
115 __host__ void gridHistogram(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
transpose.hpp 61 __host__ void gridTranspose_(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null())
72 __host__ void gridTranspose_(const SrcPtr& src, const GlobPtrSz<DstType>& dst, Stream& stream = Stream::Null())
93 __host__ void gridTranspose(const SrcPtr& src, GpuMat_<DstType>& dst, Stream& stream = Stream::Null())
99 __host__ void gridTranspose(const SrcPtr& src, const GlobPtrSz<DstType>& dst, Stream& stream = Stream::Null())
reduce_to_vec.hpp 146 __host__ void gridReduceToRow(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
163 __host__ void gridReduceToRow(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
178 __host__ void gridReduceToColumn_(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
195 __host__ void gridReduceToColumn_(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
220 __host__ void gridReduceToColumn(const SrcPtr& src, GpuMat_<ResType>& dst, const MaskPtr& mask, Stream& stream = Stream::Null())
226 __host__ void gridReduceToColumn(const SrcPtr& src, GpuMat_<ResType>& dst, Stream& stream = Stream::Null())
  /external/clang/test/SemaCUDA/
implicit-member-target.cu 14 // an error when calling it from a __device__ function, but not from a __host__
19 // expected-note@-3 {{call to __host__ function from __device__}}
41 // expected-note@-3 {{call to __device__ function from __host__}}
57 __host__ A3_with_device_ctors() {}
68 // here is __host__
84 // expected-note@-4 {{call to __host__ function from __device__}}
100 __host__ A5_copy_ctor_constness() {}
101 __host__ A5_copy_ctor_constness(A5_copy_ctor_constness&) {}
107 // expected-note@-3 {{candidate constructor (the implicit copy constructor) not viable: call to __host__ function from __device__ function}}
127 __host__ B6_with_defaulted_ctor() = default
    [all...]
builtins.cu 22 // expected-error@-1 {{reference to __device__ function '__builtin_ptx_read_tid_x' in __host__ function}}
28 int y = __builtin_ia32_rdtsc(); // expected-error {{reference to __host__ function '__builtin_ia32_rdtsc' in __device__ function}}
method-target.cu 13 s.method(); // expected-error {{reference to __host__ function 'method' in __device__ function}}
20 void method(int) {} // expected-note {{candidate function not viable: call to __host__ function from __device__ function}}
21 void method(float) {} // expected-note {{candidate function not viable: call to __host__ function from __device__ function}}
36 s.method(); // expected-error {{reference to __device__ function 'method' in __host__ function}}
46 __host__ __device__ void foo4(S4& s) {
47 s.method(); // expected-error {{reference to __device__ function 'method' in __host__ __device__ function}}
70 s->method(); // expected-error {{reference to __host__ function 'method' in __device__ function}}
function-target-disabled-check.cu 12 #define __host__ __attribute__((host))
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
zip.hpp 66 __host__ __device__ __forceinline__ ZipPtr() {}
67 __host__ __device__ __forceinline__ ZipPtr(const tuple<Ptr0, Ptr1>& t) : tuple<Ptr0, Ptr1>(t) {}
82 __host__ __device__ __forceinline__ ZipPtr() {}
83 __host__ __device__ __forceinline__ ZipPtr(const tuple<Ptr0, Ptr1, Ptr2>& t) : tuple<Ptr0, Ptr1, Ptr2>(t) {}
99 __host__ __device__ __forceinline__ ZipPtr() {}
100 __host__ __device__ __forceinline__ ZipPtr(const tuple<Ptr0, Ptr1, Ptr2, Ptr3>& t) : tuple<Ptr0, Ptr1, Ptr2, Ptr3>(t) {}
112 __host__ __device__ __forceinline__ ZipPtrSz() {}
113 __host__ __device__ __forceinline__ ZipPtrSz(const PtrTuple& t) : ZipPtr<PtrTuple>(t) {}
117 __host__ ZipPtrSz< tuple<typename PtrTraits<Ptr0>::ptr_type, typename PtrTraits<Ptr1>::ptr_type> >
134 __host__ ZipPtrSz< tuple<typename PtrTraits<Ptr0>::ptr_type, typename PtrTraits<Ptr1>::ptr_type, typename P (…)
    [all...]
deriv.hpp 79 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
86 __host__ DerivXPtrSz<typename PtrTraits<SrcPtr>::ptr_type> derivXPtr(const SrcPtr& src)
119 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
126 __host__ DerivYPtrSz<typename PtrTraits<SrcPtr>::ptr_type> derivYPtr(const SrcPtr& src)
166 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
173 __host__ SobelXPtrSz<typename PtrTraits<SrcPtr>::ptr_type> sobelXPtr(const SrcPtr& src)
212 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
219 __host__ SobelYPtrSz<typename PtrTraits<SrcPtr>::ptr_type> sobelYPtr(const SrcPtr& src)
259 __host__ void assignTo(GpuMat_<T>& dst, Stream& stream = Stream::Null()) const
266 __host__ ScharrXPtrSz<typename PtrTraits<SrcPtr>::ptr_type> scharrXPtr(const SrcPtr& src
    [all...]
extrapolation.hpp 76 __host__ BrdConstant<typename PtrTraits<SrcPtr>::ptr_type> brdConstant(const SrcPtr& src, typename PtrTraits<SrcPtr>::value_type val)
87 __host__ BrdConstant<typename PtrTraits<SrcPtr>::ptr_type> brdConstant(const SrcPtr& src)
134 __host__ BrdBase<BrdReplicate, typename PtrTraits<SrcPtr>::ptr_type> brdReplicate(const SrcPtr& src)
160 __host__ BrdBase<BrdReflect101, typename PtrTraits<SrcPtr>::ptr_type> brdReflect101(const SrcPtr& src)
186 __host__ BrdBase<BrdReflect, typename PtrTraits<SrcPtr>::ptr_type> brdReflect(const SrcPtr& src)
211 __host__ BrdBase<BrdWrap, typename PtrTraits<SrcPtr>::ptr_type> brdWrap(const SrcPtr& src)
texture.hpp 65 __host__ static void bind(const cv::cudev::GlobPtrSz<T>& mat,
81 __host__ static void unbind()
124 __host__ explicit Texture(const GlobPtrSz<T>& mat,
164 __host__ ~Texture()
209 __host__ explicit Texture(const GlobPtrSz<T>& mat,
241 __host__ ~Texture()
  /external/opencv3/modules/core/include/opencv2/core/cuda/
utility.hpp 65 template <typename T> void __device__ __host__ __forceinline__ swap(T& a, T& b)
77 explicit __host__ __device__ __forceinline__ SingleMask(PtrStepb mask_) : mask(mask_) {}
78 __host__ __device__ __forceinline__ SingleMask(const SingleMask& mask_): mask(mask_.mask){}
90 __host__ __device__ __forceinline__ SingleMaskChannels(PtrStepb mask_, int channels_)
92 __host__ __device__ __forceinline__ SingleMaskChannels(const SingleMaskChannels& mask_)
106 explicit __host__ __device__ __forceinline__ MaskCollection(PtrStepb* maskCollection_)
133 __host__ __device__ __forceinline__ WithOutMask(){}
134 __host__ __device__ __forceinline__ WithOutMask(const WithOutMask&){}
border_interpolate.hpp 65 explicit __host__ __device__ __forceinline__ BrdRowConstant(int width_, const D& val_ = VecTraits<D>::all(0)) : width(width_), val(val_) {}
90 explicit __host__ __device__ __forceinline__ BrdColConstant(int height_, const D& val_ = VecTraits<D>::all(0)) : height(height_), val(val_) {}
115 __host__ __device__ __forceinline__ BrdConstant(int height_, int width_, const D& val_ = VecTraits<D>::all(0)) : height(height_), width(width_), val(val_)
141 explicit __host__ __device__ __forceinline__ BrdRowReplicate(int width) : last_col(width - 1) {}
142 template <typename U> __host__ __device__ __forceinline__ BrdRowReplicate(int width, U) : last_col(width - 1) {}
181 explicit __host__ __device__ __forceinline__ BrdColReplicate(int height) : last_row(height - 1) {}
182 template <typename U> __host__ __device__ __forceinline__ BrdColReplicate(int height, U) : last_row(height - 1) {}
221 __host__ __device__ __forceinline__ BrdReplicate(int height, int width) : last_row(height - 1), last_col(width - 1) {}
222 template <typename U> __host__ __device__ __forceinline__ BrdReplicate(int height, int width, U) : last_row(height - 1), last_col(width - 1) {}
275 explicit __host__ __device__ __forceinline__ BrdRowReflect101(int width) : last_col(width - 1) {
    [all...]
  /external/clang/lib/Headers/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /prebuilts/clang/host/darwin-x86/clang-2629532/lib64/clang/3.8/include/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /prebuilts/clang/host/darwin-x86/clang-2658975/lib64/clang/3.8/include/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /prebuilts/clang/host/darwin-x86/clang-2690385/lib64/clang/3.8/include/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /prebuilts/clang/host/linux-x86/clang-2629532/lib64/clang/3.8/include/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /prebuilts/clang/host/linux-x86/clang-2658975/lib64/clang/3.8/include/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /prebuilts/clang/host/linux-x86/clang-2690385/lib64/clang/3.8/include/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /prebuilts/sdk/renderscript/clang-include/
__clang_cuda_runtime_wrapper.h 122 // attribute only. Alas they come either as __host__ __device__ or
124 // which produces HD variant and undef __host__ which gives us desided
126 #pragma push_macro("__host__")
127 #define __host__ macro
132 // Temporarily poison __host__ macro to ensure it's not used by any of
134 #define __host__ UNEXPECTED_HOST_ATTRIBUTE macro
172 // a lot of thins get declared/defined with __host__ attribute which
177 #define __host__ macro
192 #pragma pop_macro("__host__")
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
unary_op.hpp 65 __host__ Expr<UnaryTransformPtrSz<typename PtrTraits<GpuMat_<T> >::ptr_type, functor<T> > > \
71 __host__ Expr<UnaryTransformPtrSz<typename PtrTraits<GlobPtrSz<T> >::ptr_type, functor<T> > > \
77 __host__ Expr<UnaryTransformPtrSz<typename PtrTraits<Texture<T> >::ptr_type, functor<T> > > \
83 __host__ Expr<UnaryTransformPtrSz<typename PtrTraits<Body>::ptr_type, functor<typename Body::value_type> > > \
  /external/clang/test/CodeGenCUDA/
filter-decl.cu 34 __host__ void explicithostonlyfunc(void) {}
42 __host__ __device__ void hostdevicefunc(void) {}

Completed in 3236 milliseconds

12 3 4 5