OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:diffSign
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/modules/video_coding/
rtt_filter.cc
96
int
diffSign
= (diffFromAvg >= 0) ? 1 : -1;
98
if (
diffSign
!= jumpCountSign) {
111
_jumpCount +=
diffSign
;
/external/opencv3/modules/superres/src/cuda/
btv_l1_gpu.cu
65
void
diffSign
(PtrStepSzf src1, PtrStepSzf src2, PtrStepSzf dst, cudaStream_t stream);
145
__device__ __forceinline__ float
diffSign
(float a, float b)
149
__device__ __forceinline__ float3
diffSign
(const float3& a, const float3& b)
157
__device__ __forceinline__ float4
diffSign
(const float4& a, const float4& b)
167
struct
DiffSign
: binary_function<float, float, float>
171
return
diffSign
(a, b);
178
template <> struct TransformFunctorTraits<btv_l1_cudev::
DiffSign
> : DefaultTransformFunctorTraits<btv_l1_cudev::
DiffSign
>
187
void
diffSign
(PtrStepSzf src1, PtrStepSzf src2, PtrStepSzf dst, cudaStream_t stream)
189
transform(src1, src2, dst,
DiffSign
(), WithOutMask(), stream)
[
all
...]
/external/opencv3/modules/superres/src/
btv_l1.cpp
288
inline float
diffSign
(float a, float b)
293
Point3f
diffSign
(Point3f a, Point3f b)
306
ocl::Kernel k("
diffSign
", ocl::superres::superres_btvl1_oclsrc);
325
void
diffSign
(InputArray _src1, OutputArray _src2, OutputArray _dst)
343
dstPtr[x] =
diffSign
(src1Ptr[x], src2Ptr[x]);
392
dstRow[j] += btvWeights[ind] * (
diffSign
(srcVal, srcRow3[j + l])
393
-
diffSign
(srcRow2[j - l], srcVal));
628
diffSign
(src[k], uc_, uc_);
729
diffSign
(src[k], c_, c_);
[
all
...]
btv_l1_cuda.cpp
73
void
diffSign
(PtrStepSzf src1, PtrStepSzf src2, PtrStepSzf dst, cudaStream_t stream);
165
void
diffSign
(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, Stream& stream)
169
btv_l1_cudev::
diffSign
(src1.reshape(1), src2.reshape(1), dst.reshape(1), StreamAccessor::getStream(stream));
366
diffSign
(src[k], c_[k], c_[k], streams_[k]);
/external/opencv3/modules/superres/src/opencl/
superres_btvl1.cl
117
__kernel void
diffSign
(__global const uchar * src1, int src1_step, int src1_offset,
Completed in 6685 milliseconds