Lines Matching refs:p_center

379     lv_point_t p_center;  in draw_ticks_and_labels()  local
381 p_center.x = scale_area->x1 + r_edge; in draw_ticks_and_labels()
382 p_center.y = scale_area->y1 + r_edge; in draw_ticks_and_labels()
414 area_inner_minor.x1 = p_center.x - r_in_minor; in draw_ticks_and_labels()
415 area_inner_minor.y1 = p_center.y - r_in_minor; in draw_ticks_and_labels()
416 area_inner_minor.x2 = p_center.x + r_in_minor; in draw_ticks_and_labels()
417 area_inner_minor.y2 = p_center.y + r_in_minor; in draw_ticks_and_labels()
421 area_inner_major.x1 = p_center.x - r_in_major; in draw_ticks_and_labels()
422 area_inner_major.y1 = p_center.y - r_in_major; in draw_ticks_and_labels()
423 area_inner_major.x2 = p_center.x + r_in_major - 1; in draw_ticks_and_labels()
424 area_inner_major.y2 = p_center.y + r_in_major - 1; in draw_ticks_and_labels()
428 area_outer.x1 = p_center.x - r_out; in draw_ticks_and_labels()
429 area_outer.y1 = p_center.y - r_out; in draw_ticks_and_labels()
430 area_outer.x2 = p_center.x + r_out - 1; in draw_ticks_and_labels()
431 area_outer.y2 = p_center.y + r_out - 1; in draw_ticks_and_labels()
486 p_outer.x = p_center.x + r_out + LV_MAX(LV_DPI_DEF, r_out); in draw_ticks_and_labels()
487 p_outer.y = p_center.y; in draw_ticks_and_labels()
488 lv_point_transform(&p_outer, angle_upscale, 256, &p_center); in draw_ticks_and_labels()
490 part_draw_dsc.p1 = &p_center; in draw_ticks_and_labels()
500 p.x = p_center.x + r_text; in draw_ticks_and_labels()
501 p.y = p_center.y; in draw_ticks_and_labels()
502 lv_point_transform(&p, angle_upscale, 256, &p_center); in draw_ticks_and_labels()
537 lv_draw_line(draw_ctx, &line_dsc, &p_outer, &p_center); in draw_ticks_and_labels()