Lines Matching refs:SPAN
47 #define SPAN 8 macro
65 for (x = 0; x + SPAN <= tile_width; x += SPAN) { in CollectColorBlueTransforms_SSE41()
66 uint16_t values[SPAN]; in CollectColorBlueTransforms_SSE41()
68 const __m128i in1 = _mm_loadu_si128((__m128i*)&src[x + SPAN / 2]); in CollectColorBlueTransforms_SSE41()
82 for (i = 0; i < SPAN; ++i) ++histo[values[i]]; in CollectColorBlueTransforms_SSE41()
86 const int left_over = tile_width & (SPAN - 1); in CollectColorBlueTransforms_SSE41()
106 for (x = 0; x + SPAN <= tile_width; x += SPAN) { in CollectColorRedTransforms_SSE41()
107 uint16_t values[SPAN]; in CollectColorRedTransforms_SSE41()
109 const __m128i in1 = _mm_loadu_si128((__m128i*)&src[x + SPAN / 2]); in CollectColorRedTransforms_SSE41()
120 for (i = 0; i < SPAN; ++i) ++histo[values[i]]; in CollectColorRedTransforms_SSE41()
124 const int left_over = tile_width & (SPAN - 1); in CollectColorRedTransforms_SSE41()