Lines Matching full:t

56         lv_color32_t t;  in lv_dither_ordered_hor()  local
57 t.ch.red = LV_CLAMP(0, tmp.ch.red + factor, 255); in lv_dither_ordered_hor()
58 t.ch.green = LV_CLAMP(0, tmp.ch.green + factor, 255); in lv_dither_ordered_hor()
59 t.ch.blue = LV_CLAMP(0, tmp.ch.blue + factor, 255); in lv_dither_ordered_hor()
61 grad->map[j] = lv_color_hex(t.full); in lv_dither_ordered_hor()
81 lv_color32_t t; in lv_dither_ordered_ver() local
82 t.ch.red = LV_CLAMP(0, tmp.ch.red + factor, 255); in lv_dither_ordered_ver()
83 t.ch.green = LV_CLAMP(0, tmp.ch.green + factor, 255); in lv_dither_ordered_ver()
84 t.ch.blue = LV_CLAMP(0, tmp.ch.blue + factor, 255); in lv_dither_ordered_ver()
86 grad->map[j] = lv_color_hex(t.full); in lv_dither_ordered_ver()
116 …(e, t, q) { lv_color32_t u; u.full = lv_color_to32(q); e.r = (int8_t)(t.ch.red - u.ch.red); e.g = … in lv_dither_err_diff_hor() argument
121 lv_color32_t t = grad->hmap[x]; in lv_dither_err_diff_hor() local
124 FS_COMPONENTS(t, +, next_px_err, next_l); in lv_dither_err_diff_hor()
127 q = lv_color_hex(t.full); in lv_dither_err_diff_hor()
129 FS_QUANT_ERROR(error, t, q); in lv_dither_err_diff_hor()
171 …However, the SW term is painful for us, we can't support it (since to get it, we need its own SW t… in lv_dither_err_diff_ver()
190 lv_color32_t t = grad->hmap[y]; in lv_dither_err_diff_ver() local
192 FS_COMPONENTS3(t, +, next_px_err, 6, prev_l, 1, grad->error_acc[0], 9); in lv_dither_err_diff_ver()
193 grad->map[0] = lv_color_hex(t.full); in lv_dither_err_diff_ver()
197 lv_color32_t t = grad->hmap[y]; in lv_dither_err_diff_ver() local
200 FS_COMPONENTS3(t, +, next_px_err, 6, prev_l, 1, grad->error_acc[x], 9); in lv_dither_err_diff_ver()
203 q = lv_color_hex(t.full); in lv_dither_err_diff_ver()
204 FS_QUANT_ERROR(next_px_err, t, q); in lv_dither_err_diff_ver()