Lines Matching refs:cbuf

52                        int32_t x_end, lv_color_t * cbuf, uint8_t * abuf);
56 int32_t x_end, lv_color_t * cbuf, uint8_t * abuf, lv_img_cf_t cf);
61 int32_t x_end, lv_color_t * cbuf, uint8_t * abuf);
66 int32_t x_end, lv_color_t * cbuf, uint8_t * abuf, lv_img_cf_t cf);
82 … const lv_draw_img_dsc_t * draw_dsc, lv_img_cf_t cf, lv_color_t * cbuf, lv_opa_t * abuf) in lv_draw_sw_transform() argument
131 …a(src_buf, src_w, src_h, src_stride, xs_ups, ys_ups, xs_step_256, ys_step_256, dest_w, cbuf, abuf); in lv_draw_sw_transform()
135 …c_buf, src_w, src_h, src_stride, xs_ups, ys_ups, xs_step_256, ys_step_256, dest_w, cbuf, abuf, cf); in lv_draw_sw_transform()
140 …a(src_buf, src_w, src_h, src_stride, xs_ups, ys_ups, xs_step_256, ys_step_256, dest_w, cbuf, abuf); in lv_draw_sw_transform()
148 …c_buf, src_w, src_h, src_stride, xs_ups, ys_ups, xs_step_256, ys_step_256, dest_w, cbuf, abuf, cf); in lv_draw_sw_transform()
151 cbuf += dest_w; in lv_draw_sw_transform()
162 int32_t x_end, lv_color_t * cbuf, uint8_t * abuf, lv_img_cf_t cf) in rgb_no_aa() argument
186 cbuf[x].full = src_tmp[0]; in rgb_no_aa()
190 cbuf[x] = *src_tmp; in rgb_no_aa()
194 cbuf[x].full = *((uint32_t *)src_tmp); in rgb_no_aa()
197 if(cf == LV_IMG_CF_TRUE_COLOR_CHROMA_KEYED && cbuf[x].full == ck.full) { in rgb_no_aa()
205 int32_t x_end, lv_color_t * cbuf, uint8_t * abuf) in argb_no_aa() argument
225 cbuf[x].full = src_tmp[0]; in argb_no_aa()
227 cbuf[x].full = src_tmp[0] + (src_tmp[1] << 8); in argb_no_aa()
229 cbuf[x].full = *((uint32_t *)src_tmp); in argb_no_aa()
239 int32_t x_end, lv_color_t * cbuf, uint8_t * abuf) in rgb565a8_no_aa() argument
257 cbuf[x] = *src_tmp; in rgb565a8_no_aa()
269 int32_t x_end, lv_color_t * cbuf, uint8_t * abuf, lv_img_cf_t cf) in argb_and_rgb_aa() argument
420 cbuf[x] = c_base; in argb_and_rgb_aa()
425 cbuf[x] = lv_color_mix(c_hor, c_ver, LV_OPA_50); in argb_and_rgb_aa()
431 cbuf[x].full = src_tmp[0]; in argb_and_rgb_aa()
433 cbuf[x].full = src_tmp[0] + (src_tmp[1] << 8); in argb_and_rgb_aa()
435 cbuf[x].full = *((uint32_t *)src_tmp); in argb_and_rgb_aa()
443 a = cbuf[x].full == ck.full ? 0x00 : 0xff; in argb_and_rgb_aa()