Lines Matching refs:SPAN
81 #define SPAN 8 macro
94 for (x = 0; x + SPAN <= tile_width; x += SPAN) { in CollectColorBlueTransforms_SSE2()
95 uint16_t values[SPAN]; in CollectColorBlueTransforms_SSE2()
97 const __m128i in1 = _mm_loadu_si128((__m128i*)&src[x + SPAN / 2]); in CollectColorBlueTransforms_SSE2()
116 for (i = 0; i < SPAN; ++i) ++histo[values[i]]; in CollectColorBlueTransforms_SSE2()
120 const int left_over = tile_width & (SPAN - 1); in CollectColorBlueTransforms_SSE2()
140 for (x = 0; x + SPAN <= tile_width; x += SPAN) { in CollectColorRedTransforms_SSE2()
141 uint16_t values[SPAN]; in CollectColorRedTransforms_SSE2()
143 const __m128i in1 = _mm_loadu_si128((__m128i*)&src[x + SPAN / 2]); in CollectColorRedTransforms_SSE2()
156 for (i = 0; i < SPAN; ++i) ++histo[values[i]]; in CollectColorRedTransforms_SSE2()
160 const int left_over = tile_width & (SPAN - 1); in CollectColorRedTransforms_SSE2()
168 #undef SPAN