Home
last modified time | relevance | path

Searched refs:CV_CPU_SSE2 (Results 1 – 21 of 21) sorted by relevance

/external/opencv3/modules/core/src/
Dsystem.cpp269 f.have[CV_CPU_SSE2] = (cpuid_data[3] & (1<<26)) != 0; in initialize()
382 volatile bool USE_SSE2 = featuresEnabled.have[CV_CPU_SSE2];
391 USE_SSE2 = currentFeatures->have[CV_CPU_SSE2]; in setUseOptimized()
Darithm.cpp2611 haveSSE = checkHardwareSupport(CV_CPU_SSE2); in Mul_SIMD()
2676 haveSSE = checkHardwareSupport(CV_CPU_SSE2); in Mul_SIMD()
2800 … Div_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Div_SIMD()
2846 … Div_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Div_SIMD()
2892 … Div_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Div_SIMD()
2937 … Div_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Div_SIMD()
2982 … Div_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Div_SIMD()
3026 … Div_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Div_SIMD()
3066 …Recip_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Recip_SIMD()
3107 …Recip_SIMD() { haveSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); } in Recip_SIMD()
[all …]
Dconvert.cpp161 support = checkHardwareSupport(CV_CPU_SSE2); \
194 support = checkHardwareSupport(CV_CPU_SSE2); \
232 support = checkHardwareSupport(CV_CPU_SSE2); \
619 MERGE2_KERNEL_TEMPLATE( uchar, __m128i, __m128i, _mm_interleave_epi8, si128, CV_CPU_SSE2);
620 MERGE3_KERNEL_TEMPLATE( uchar, __m128i, __m128i, _mm_interleave_epi8, si128, CV_CPU_SSE2);
621 MERGE4_KERNEL_TEMPLATE( uchar, __m128i, __m128i, _mm_interleave_epi8, si128, CV_CPU_SSE2);
629 MERGE2_KERNEL_TEMPLATE( int, __m128, float, _mm_interleave_ps, ps, CV_CPU_SSE2);
630 MERGE3_KERNEL_TEMPLATE( int, __m128, float, _mm_interleave_ps, ps, CV_CPU_SSE2);
631 MERGE4_KERNEL_TEMPLATE( int, __m128, float, _mm_interleave_ps, ps, CV_CPU_SSE2);
/external/opencv3/modules/imgproc/src/
Dpyramids.cpp80 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
249 haveSSE = checkHardwareSupport(CV_CPU_SSE2); in PyrDownVec_32s16s()
301 if (!checkHardwareSupport(CV_CPU_SSE2)) in operator ()()
365 if (!checkHardwareSupport(CV_CPU_SSE2)) in operator ()()
489 if (!checkHardwareSupport(CV_CPU_SSE2)) in operator ()()
Dsmooth.cpp231 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in operator ()()
406 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in operator ()()
574 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in operator ()()
740 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in operator ()()
890 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in operator ()()
1845 volatile bool useSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); in medianBlur_8u_O1()
2384 volatile bool useSIMD = checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON); in medianBlur_SortNet()
2741 …(MEDIAN_HAVE_SIMD && (checkHardwareSupport(CV_CPU_SSE2) || checkHardwareSupport(CV_CPU_NEON)) ? 1 … in medianBlur()
Dcorner.cpp276 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in cornerEigenValsVecs()
698 volatile bool haveSSE2 = cv::checkHardwareSupport(CV_CPU_SSE2); in preCornerDetect()
Dcanny.cpp254 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in operator ()()
742 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in Canny()
Dsumpixels.cpp74 haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); in Integral_SIMD()
Dimgwarp.cpp462 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
545 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
694 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
789 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
2021 use_simd = checkHardwareSupport(CV_CPU_SSE2); in ResizeAreaFastVec_SIMD_8u()
2120 use_simd = checkHardwareSupport(CV_CPU_SSE2); in ResizeAreaFastVec_SIMD_16u()
2208 use_simd = checkHardwareSupport(CV_CPU_SSE2); in ResizeAreaFastVec_SIMD_16s()
2294 fast_mode = fast_mode && checkHardwareSupport(CV_CPU_SSE2); in ResizeAreaFastVec_SIMD_32f()
3602 if( (cn != 1 && cn != 3 && cn != 4) || !checkHardwareSupport(CV_CPU_SSE2) || in operator ()()
4256 bool useSIMD = checkHardwareSupport(CV_CPU_SSE2); in operator ()()
[all …]
Dfilter.cpp526 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
618 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
939 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
1087 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
1214 sse2_supported = checkHardwareSupport(CV_CPU_SSE2); in RowVec_16s32f()
1264 sse2_supported = checkHardwareSupport(CV_CPU_SSE2); in SymmColumnVec_32f16s()
1987 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
2070 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
Dmorph.cpp104 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
178 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
411 if( !checkHardwareSupport(CV_CPU_SSE2) ) in operator ()()
Dcolor.cpp970 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in Gray2RGB5x5()
1095 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in RGB5x52Gray()
1598 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in RGB2Gray()
1821 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in RGB2YCrCb_f()
2557 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in YCrCb2RGB_f()
2961 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in YCrCb2RGB_i()
3264 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in RGB2XYZ_f()
3703 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in XYZ2RGB_f()
4315 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in HSV2RGB_b()
4573 haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in RGB2HLS_b()
[all …]
Ddemosaicing.cpp87 use_simd = checkHardwareSupport(CV_CPU_SSE2); in SIMDBayerInterpolator_8u()
940 bool haveSSE = cv::checkHardwareSupport(CV_CPU_SSE2); in Bayer2RGB_VNG_8u()
Dmoments.cpp221 useSIMD = checkHardwareSupport(CV_CPU_SSE2); in MomentsInTile_SIMD()
Dthresh.cpp165 if( checkHardwareSupport(CV_CPU_SSE2) ) in thresh_8u()
Dhistogram.cpp2288 bool haveSIMD = checkHardwareSupport(CV_CPU_SSE2); in compareHist()
/external/opencv3/modules/hal/include/opencv2/hal/
Ddefs.h94 #define CV_CPU_SSE2 3 macro
/external/opencv3/modules/calib3d/src/
Dstereosgbm.cpp184 volatile bool useSIMD = checkHardwareSupport(CV_CPU_SSE2); in calcPixelCostBT()
327 volatile bool useSIMD = checkHardwareSupport(CV_CPU_SSE2); in computeDisparitySGBM()
Dstereobm.cpp203 volatile bool useSIMD = checkHardwareSupport(CV_CPU_SSE2); in prefilterXSobel()
1138 …rts = params.preFilterCap <= 31 && params.SADWindowSize <= 21 && checkHardwareSupport(CV_CPU_SSE2); in compute()
/external/opencv3/modules/objdetect/src/
Dhaar.cpp829 bool haveSSE2 = cv::checkHardwareSupport(CV_CPU_SSE2); in cvRunHaarClassifierCascadeSum()
/external/opencv3/modules/ts/src/
Dts_func.cpp3011 if (checkHardwareSupport(CV_CPU_SSE2)) cpu_features += " sse2"; in printVersionInfo()