Home
last modified time | relevance | path

Searched refs:OutIt (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/warp/
Dwarp.hpp85 template <class InIt, class OutIt>
86 __device__ __forceinline__ OutIt warpCopy(InIt beg, InIt end, OutIt out) in warpCopy()
93 template <class InIt, class OutIt, class UnOp>
94 __device__ __forceinline__ OutIt warpTransform(InIt beg, InIt end, OutIt out, const UnOp& op) in warpTransform()
101 template <class InIt1, class InIt2, class OutIt, class BinOp>
102 __device__ __forceinline__ OutIt warpTransform(InIt1 beg1, InIt1 end1, InIt2 beg2, OutIt out, const… in warpTransform()
113 template<typename OutIt, typename T>
114 __device__ __forceinline__ void warpYota(OutIt beg, OutIt end, T value) in warpYota()
119 for(OutIt t = beg + lane; t < end; t += WARP_SIZE, value += WARP_SIZE) in warpYota()
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dwarp.hpp78 template<typename InIt, typename OutIt>
79 static __device__ __forceinline__ OutIt copy(InIt beg, InIt end, OutIt out) in copy()
86 template<typename InIt, typename OutIt, class UnOp>
87 static __device__ __forceinline__ OutIt transform(InIt beg, InIt end, OutIt out, UnOp op) in transform()
94 template<typename InIt1, typename InIt2, typename OutIt, class BinOp>
95 …static __device__ __forceinline__ OutIt transform(InIt1 beg1, InIt1 end1, InIt2 beg2, OutIt out, B… in transform()
125 template<typename OutIt, typename T>
126 static __device__ __forceinline__ void yota(OutIt beg, OutIt end, T value) in yota()
131 for(OutIt t = beg + lane; t < end; t += STRIDE, value += STRIDE) in yota()
Dblock.hpp86 template<typename OutIt, typename T>
87 static __device__ __forceinline__ void yota(OutIt beg, OutIt end, T value) in yota()
93 for(OutIt t = beg + tid; t < end; t += STRIDE, value += STRIDE) in yota()
97 template<typename InIt, typename OutIt>
98 static __device__ __forceinline__ void copy(InIt beg, InIt end, OutIt out) in copy()
102 OutIt o = out + (t - beg); in copy()
108 template<typename InIt, typename OutIt, class UnOp>
109 static __device__ __forceinline__ void transfrom(InIt beg, InIt end, OutIt out, UnOp op) in transfrom()
113 OutIt o = out + (t - beg); in transfrom()
119 template<typename InIt1, typename InIt2, typename OutIt, class BinOp>
[all …]
/external/opencv3/modules/cudev/include/opencv2/cudev/block/
Dblock.hpp84 template <class OutIt, typename T>
85 __device__ __forceinline__ static void blockYota(OutIt beg, OutIt end, T value) in blockYota()
91 for(OutIt t = beg + tid; t < end; t += STRIDE, value += STRIDE) in blockYota()
95 template <class InIt, class OutIt>
96 __device__ __forceinline__ static void blockCopy(InIt beg, InIt end, OutIt out) in blockCopy()
100 OutIt o = out + (t - beg); in blockCopy()
106 template <class InIt, class OutIt, class UnOp>
107 __device__ __forceinline__ static void blockTransfrom(InIt beg, InIt end, OutIt out, const UnOp& op) in blockTransfrom()
111 OutIt o = out + (t - beg); in blockTransfrom()
117 template <class InIt1, class InIt2, class OutIt, class BinOp>
[all …]
/external/llvm/lib/CodeGen/
DLiveInterval.cpp602 iterator OutIt = begin(); in join() local
603 OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]]; in join()
604 for (iterator I = std::next(OutIt), E = end(); I != E; ++I) { in join()
611 if (OutIt->valno == nextValNo && OutIt->end == I->start) { in join()
612 OutIt->end = I->end; in join()
615 ++OutIt; in join()
616 OutIt->valno = nextValNo; in join()
617 if (OutIt != I) { in join()
618 OutIt->start = I->start; in join()
619 OutIt->end = I->end; in join()
[all …]