B2Y               101 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp             B2Y        = 1868,
B2Y               409 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp                 return (uchar)CV_DESCALE(((t << 3) & 0xf8) * B2Y + ((t >> 3) & 0xfc) * G2Y + ((t >> 8) & 0xf8) * R2Y, yuv_shift);
B2Y               417 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp                 return (uchar)CV_DESCALE(((t << 3) & 0xf8) * B2Y + ((t >> 2) & 0xf8) * G2Y + ((t >> 7) & 0xf8) * R2Y, yuv_shift);
B2Y               446 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp             return (T)CV_DESCALE((unsigned)(src[bidx] * B2Y + src[1] * G2Y + src[bidx^2] * R2Y), yuv_shift);
B2Y               454 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp             return CV_DESCALE((uint)(b * B2Y + g * G2Y + r * R2Y), yuv_shift);
B2Y               498 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp         __constant__ int   c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 };
B2Y               637 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp         __constant__ int   c_RGB2YCrCbCoeffs_i[5] = {R2Y, G2Y, B2Y, 11682, 9241};
B2Y               100 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp         B2Y        = 1868,
B2Y               290 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp             return (uchar) CV_CUDEV_DESCALE(((src << 3) & 0xf8) * B2Y + ((src >> 2) & 0xf8) * G2Y + ((src >> 7) & 0xf8) * R2Y, yuv_shift);
B2Y               299 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp             return (uchar) CV_CUDEV_DESCALE(((src << 3) & 0xf8) * B2Y + ((src >> 3) & 0xfc) * G2Y + ((src >> 8) & 0xf8) * R2Y, yuv_shift);
B2Y               313 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp             return (T) CV_CUDEV_DESCALE(b * B2Y + g * G2Y + r * R2Y, yuv_shift);
B2Y               332 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp     __constant__ int   c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 };
B2Y               426 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp     __constant__ int   c_RGB2YCrCbCoeffs_i[5] = { R2Y, G2Y, B2Y, 11682, 9241 };
B2Y              1076 modules/imgproc/src/color.cpp     B2Y = 1868,
B2Y              1088 modules/imgproc/src/color.cpp         v_b2y = vdup_n_u16(B2Y);
B2Y              1096 modules/imgproc/src/color.cpp         v_b2y = _mm_set1_epi16(B2Y);
B2Y              1167 modules/imgproc/src/color.cpp                 dst[i] = (uchar)CV_DESCALE(((t << 3) & 0xf8)*B2Y +
B2Y              1231 modules/imgproc/src/color.cpp                 dst[i] = (uchar)CV_DESCALE(((t << 3) & 0xf8)*B2Y +
B2Y              1281 modules/imgproc/src/color.cpp         const int coeffs0[] = { R2Y, G2Y, B2Y };
B2Y              1315 modules/imgproc/src/color.cpp         static const int coeffs0[] = { R2Y, G2Y, B2Y };
B2Y              1476 modules/imgproc/src/color.cpp         static const int coeffs0[] = { R2Y, G2Y, B2Y };
B2Y              1685 modules/imgproc/src/color.cpp         static const int coeffs0[] = { R2Y, G2Y, B2Y };
B2Y              1905 modules/imgproc/src/color.cpp         static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241};
B2Y              1939 modules/imgproc/src/color.cpp         static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241};
B2Y              2033 modules/imgproc/src/color.cpp         static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241};
B2Y              2156 modules/imgproc/src/color.cpp         static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241};
B2Y              2306 modules/imgproc/src/color.cpp         static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241};
B2Y              7693 modules/imgproc/src/color.cpp             static const int yuv_i[] = { B2Y, G2Y, R2Y, 8061, 14369 };
B2Y               613 modules/imgproc/src/demosaicing.cpp     const int B2Y = 1868;
B2Y               616 modules/imgproc/src/demosaicing.cpp     int bcoeff = B2Y, rcoeff = R2Y;