Lines Matching refs:x

105     tr_dsc.pivot_x_256 = tr_dsc.pivot.x * 256;  in lv_draw_sw_transform()
171 lv_coord_t x; in rgb_no_aa() local
172 for(x = 0; x < x_end; x++) { in rgb_no_aa()
173 xs_ups = xs_ups_start + ((xs_step * x) >> 8); in rgb_no_aa()
174 ys_ups = ys_ups_start + ((ys_step * x) >> 8); in rgb_no_aa()
179 abuf[x] = 0x00; in rgb_no_aa()
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()
198 abuf[x] = 0x00; in rgb_no_aa()
210 lv_coord_t x; in argb_no_aa() local
211 for(x = 0; x < x_end; x++) { in argb_no_aa()
212 xs_ups = xs_ups_start + ((xs_step * x) >> 8); in argb_no_aa()
213 ys_ups = ys_ups_start + ((ys_step * x) >> 8); in argb_no_aa()
218 abuf[x] = 0; in argb_no_aa()
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()
231 abuf[x] = src_tmp[LV_IMG_PX_SIZE_ALPHA_BYTE - 1]; in argb_no_aa()
244 lv_coord_t x; in rgb565a8_no_aa() local
245 for(x = 0; x < x_end; x++) { in rgb565a8_no_aa()
246 xs_ups = xs_ups_start + ((xs_step * x) >> 8); in rgb565a8_no_aa()
247 ys_ups = ys_ups_start + ((ys_step * x) >> 8); in rgb565a8_no_aa()
252 abuf[x] = 0; in rgb565a8_no_aa()
257 cbuf[x] = *src_tmp; in rgb565a8_no_aa()
261 abuf[x] = *a_tmp; in rgb565a8_no_aa()
303 lv_coord_t x; in argb_and_rgb_aa() local
304 for(x = 0; x < x_end; x++) { in argb_and_rgb_aa()
305 xs_ups = xs_ups_start + ((xs_step * x) >> 8); in argb_and_rgb_aa()
306 ys_ups = ys_ups_start + ((ys_step * x) >> 8); in argb_and_rgb_aa()
313 abuf[x] = 0x00; in argb_and_rgb_aa()
378 abuf[x] = 0x00; in argb_and_rgb_aa()
395 abuf[x] = (a_ver + a_hor) >> 1; in argb_and_rgb_aa()
397 if(abuf[x] == 0x00) continue; in argb_and_rgb_aa()
418 abuf[x] = 0xff; in argb_and_rgb_aa()
422 cbuf[x] = c_base; in argb_and_rgb_aa()
427 cbuf[x] = lv_color_mix(c_hor, c_ver, LV_OPA_50); in argb_and_rgb_aa()
433 cbuf[x].full = src_tmp[0]; in argb_and_rgb_aa()
435 cbuf[x].full = src_tmp[0] + (src_tmp[1] << 8); in argb_and_rgb_aa()
437 cbuf[x].full = *((uint32_t *)src_tmp); in argb_and_rgb_aa()
445 a = cbuf[x].full == ck.full ? 0x00 : 0xff; in argb_and_rgb_aa()
457 abuf[x] = (a * (0xFF - xs_fract)) >> 8; in argb_and_rgb_aa()
460 abuf[x] = (a * (0xFF - ys_fract)) >> 8; in argb_and_rgb_aa()
463 abuf[x] = 0x00; in argb_and_rgb_aa()
478 xin -= t->pivot.x; in transform_point_upscaled()