Lines Matching refs:wl
91 wl = _mm256_sub_epi8(_mm256_set1_epi8(16), wr);
95 _mm256_unpacklo_epi8(wl,wr));
97 _mm256_unpackhi_epi8(wl,wr));
256 // and sixteen minus that as wl for pixels on the left at x0.
258 wl = _mm_sub_epi8(_mm_set1_epi8(16), wr);
260 // We need to interlace wl and wr for _mm_maddubs_epi16().
261 __m128i interlaced_x_weights_AB = _mm_unpacklo_epi8(wl,wr),
262 interlaced_x_weights_CD = _mm_unpackhi_epi8(wl,wr);
293 // As above, splat out wx four times as wr, and sixteen minus that as wl.
295 wl = _mm_sub_epi8(_mm_set1_epi8(16), wr);
297 __m128i interlaced_x_weights = _mm_unpacklo_epi8(wl, wr);