arg_type         2174 modules/imgproc/src/smooth.cpp     arg_type load(const uchar* ptr) { return *ptr; }
arg_type         2175 modules/imgproc/src/smooth.cpp     void store(uchar* ptr, arg_type val) { *ptr = (uchar)val; }
arg_type         2176 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2188 modules/imgproc/src/smooth.cpp     arg_type load(const ushort* ptr) { return *ptr; }
arg_type         2189 modules/imgproc/src/smooth.cpp     void store(ushort* ptr, arg_type val) { *ptr = (ushort)val; }
arg_type         2190 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2192 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2203 modules/imgproc/src/smooth.cpp     arg_type load(const short* ptr) { return *ptr; }
arg_type         2204 modules/imgproc/src/smooth.cpp     void store(short* ptr, arg_type val) { *ptr = (short)val; }
arg_type         2205 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2207 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2218 modules/imgproc/src/smooth.cpp     arg_type load(const float* ptr) { return *ptr; }
arg_type         2219 modules/imgproc/src/smooth.cpp     void store(float* ptr, arg_type val) { *ptr = val; }
arg_type         2220 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2222 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2235 modules/imgproc/src/smooth.cpp     arg_type load(const uchar* ptr) { return _mm_loadu_si128((const __m128i*)ptr); }
arg_type         2236 modules/imgproc/src/smooth.cpp     void store(uchar* ptr, arg_type val) { _mm_storeu_si128((__m128i*)ptr, val); }
arg_type         2237 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2239 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2251 modules/imgproc/src/smooth.cpp     arg_type load(const ushort* ptr) { return _mm_loadu_si128((const __m128i*)ptr); }
arg_type         2252 modules/imgproc/src/smooth.cpp     void store(ushort* ptr, arg_type val) { _mm_storeu_si128((__m128i*)ptr, val); }
arg_type         2253 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2255 modules/imgproc/src/smooth.cpp         arg_type t = _mm_subs_epu16(a, b);
arg_type         2267 modules/imgproc/src/smooth.cpp     arg_type load(const short* ptr) { return _mm_loadu_si128((const __m128i*)ptr); }
arg_type         2268 modules/imgproc/src/smooth.cpp     void store(short* ptr, arg_type val) { _mm_storeu_si128((__m128i*)ptr, val); }
arg_type         2269 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2271 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2283 modules/imgproc/src/smooth.cpp     arg_type load(const float* ptr) { return _mm_loadu_ps(ptr); }
arg_type         2284 modules/imgproc/src/smooth.cpp     void store(float* ptr, arg_type val) { _mm_storeu_ps(ptr, val); }
arg_type         2285 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2287 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2300 modules/imgproc/src/smooth.cpp     arg_type load(const uchar* ptr) { return vld1q_u8(ptr); }
arg_type         2301 modules/imgproc/src/smooth.cpp     void store(uchar* ptr, arg_type val) { vst1q_u8(ptr, val); }
arg_type         2302 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2304 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2316 modules/imgproc/src/smooth.cpp     arg_type load(const ushort* ptr) { return vld1q_u16(ptr); }
arg_type         2317 modules/imgproc/src/smooth.cpp     void store(ushort* ptr, arg_type val) { vst1q_u16(ptr, val); }
arg_type         2318 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2320 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2332 modules/imgproc/src/smooth.cpp     arg_type load(const short* ptr) { return vld1q_s16(ptr); }
arg_type         2333 modules/imgproc/src/smooth.cpp     void store(short* ptr, arg_type val) { vst1q_s16(ptr, val); }
arg_type         2334 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2336 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2348 modules/imgproc/src/smooth.cpp     arg_type load(const float* ptr) { return vld1q_f32(ptr); }
arg_type         2349 modules/imgproc/src/smooth.cpp     void store(float* ptr, arg_type val) { vst1q_f32(ptr, val); }
arg_type         2350 modules/imgproc/src/smooth.cpp     void operator()(arg_type& a, arg_type& b) const
arg_type         2352 modules/imgproc/src/smooth.cpp         arg_type t = a;
arg_type         2373 modules/imgproc/src/smooth.cpp     typedef typename Op::arg_type WT;
arg_type         2374 modules/imgproc/src/smooth.cpp     typedef typename VecOp::arg_type VT;