Searched refs:cfb_position (Results  1 – 6 of 6) sorted by relevance
| /Zephyr-latest/tests/subsys/display/cfb/basic/src/ | 
| D | draw_rect.c | 52 	struct cfb_position start = {0, 0};  in ZTEST() 53 	struct cfb_position end = {start.x + 10, start.y + 22};  in ZTEST() 63 	struct cfb_position start = {1, 1};  in ZTEST() 64 	struct cfb_position end = {start.x + 10, start.y + 22};  in ZTEST() 75 	struct cfb_position start = {9, 15};  in ZTEST() 76 	struct cfb_position end = {start.x + 10, start.y + 22};  in ZTEST() 86 	struct cfb_position start = {10, 16};  in ZTEST() 87 	struct cfb_position end = {start.x + 10, start.y + 22};  in ZTEST() 97 	struct cfb_position start = {11, 17};  in ZTEST() 98 	struct cfb_position end = {start.x + 10, start.y + 22};  in ZTEST() [all …] 
 | 
| D | draw_line.c | 49 	struct cfb_position start = {0, 0};  in ZTEST() 50 	struct cfb_position end = {display_width, 0};  in ZTEST() 60 	struct cfb_position start = {0, 0};  in ZTEST() 61 	struct cfb_position end = {0, display_height};  in ZTEST() 71 	struct cfb_position start = {display_width - 1, 0};  in ZTEST() 72 	struct cfb_position end = {display_width - 1, display_height};  in ZTEST() 82 	struct cfb_position start = {0, 239};  in ZTEST() 83 	struct cfb_position end = {display_width, 239};  in ZTEST() 93 	struct cfb_position start = {0, 0};  in ZTEST() 94 	struct cfb_position end = {display_width, 0};  in ZTEST() [all …] 
 | 
| D | draw_point.c | 52 	struct cfb_position pos = {0, 0};  in ZTEST() 62 	struct cfb_position pos = {1, 1};  in ZTEST() 75 	struct cfb_position pos = {9, 15};  in ZTEST() 85 	struct cfb_position pos = {10, 16};  in ZTEST() 95 	struct cfb_position pos = {11, 17};  in ZTEST() 105 	struct cfb_position pos = {10, 0};  in ZTEST() 124 	struct cfb_position pos = {0, -1};  in ZTEST() 134 	struct cfb_position pos = {display_width, 0};  in ZTEST() 144 	struct cfb_position pos = {0, display_height};  in ZTEST() 154 	struct cfb_position pos = {-1, display_height};  in ZTEST()
  | 
| /Zephyr-latest/include/zephyr/display/ | 
| D | cfb.h | 53 struct cfb_position {  struct 113 int cfb_draw_point(const struct device *dev, const struct cfb_position *pos); 124 int cfb_draw_line(const struct device *dev, const struct cfb_position *start, 125 		  const struct cfb_position *end); 136 int cfb_draw_rect(const struct device *dev, const struct cfb_position *start, 137 		  const struct cfb_position *end);
  | 
| /Zephyr-latest/subsys/fb/ | 
| D | cfb.c | 297 int cfb_draw_point(const struct device *dev, const struct cfb_position *pos)  in cfb_draw_point() 306 int cfb_draw_line(const struct device *dev, const struct cfb_position *start,  in cfb_draw_line() 307 		  const struct cfb_position *end)  in cfb_draw_line() 316 int cfb_draw_rect(const struct device *dev, const struct cfb_position *start,  in cfb_draw_rect() 317 		  const struct cfb_position *end)  in cfb_draw_rect()
  | 
| D | cfb_shell.c | 132 	struct cfb_position pos;  in cmd_draw_point() 151 	struct cfb_position start, end;  in cmd_draw_line() 172 	struct cfb_position start, end;  in cmd_draw_rect()
  |