Lines Matching refs:d128
554 const uint8_t * const d128 = ff_dither_8x8_220[y&7]; in yuv2mono_X_c_template() local
585 accumulate_bit(acc, Y1 + d128[(i + 0) & 7]); in yuv2mono_X_c_template()
586 accumulate_bit(acc, Y2 + d128[(i + 1) & 7]); in yuv2mono_X_c_template()
607 const uint8_t * const d128 = ff_dither_8x8_220[y & 7]; in yuv2mono_2_c_template() local
639 accumulate_bit(acc, Y + d128[0]); in yuv2mono_2_c_template()
641 accumulate_bit(acc, Y + d128[1]); in yuv2mono_2_c_template()
643 accumulate_bit(acc, Y + d128[2]); in yuv2mono_2_c_template()
645 accumulate_bit(acc, Y + d128[3]); in yuv2mono_2_c_template()
647 accumulate_bit(acc, Y + d128[4]); in yuv2mono_2_c_template()
649 accumulate_bit(acc, Y + d128[5]); in yuv2mono_2_c_template()
651 accumulate_bit(acc, Y + d128[6]); in yuv2mono_2_c_template()
653 accumulate_bit(acc, Y + d128[7]); in yuv2mono_2_c_template()
666 const uint8_t * const d128 = ff_dither_8x8_220[y & 7]; in yuv2mono_1_c_template() local
694 accumulate_bit(acc, ((buf0[i + 0] + 64) >> 7) + d128[0]); in yuv2mono_1_c_template()
695 accumulate_bit(acc, ((buf0[i + 1] + 64) >> 7) + d128[1]); in yuv2mono_1_c_template()
696 accumulate_bit(acc, ((buf0[i + 2] + 64) >> 7) + d128[2]); in yuv2mono_1_c_template()
697 accumulate_bit(acc, ((buf0[i + 3] + 64) >> 7) + d128[3]); in yuv2mono_1_c_template()
698 accumulate_bit(acc, ((buf0[i + 4] + 64) >> 7) + d128[4]); in yuv2mono_1_c_template()
699 accumulate_bit(acc, ((buf0[i + 5] + 64) >> 7) + d128[5]); in yuv2mono_1_c_template()
700 accumulate_bit(acc, ((buf0[i + 6] + 64) >> 7) + d128[6]); in yuv2mono_1_c_template()
701 accumulate_bit(acc, ((buf0[i + 7] + 64) >> 7) + d128[7]); in yuv2mono_1_c_template()
1630 const uint8_t * const d128 = ff_dither_8x8_220[y & 7]; in yuv2rgb_write() local
1631 dr1 = db1 = d128[(i * 2 + 0) & 7]; in yuv2rgb_write()
1633 dr2 = db2 = d128[(i * 2 + 1) & 7]; in yuv2rgb_write()