Lines Matching refs:start

52 	struct cfb_position start = {0, 0};  in ZTEST()  local
53 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
55 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
63 struct cfb_position start = {1, 1}; in ZTEST() local
64 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
66 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
75 struct cfb_position start = {9, 15}; in ZTEST() local
76 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
78 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
86 struct cfb_position start = {10, 16}; in ZTEST() local
87 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
89 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
97 struct cfb_position start = {11, 17}; in ZTEST() local
98 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
100 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
111 struct cfb_position start = {-(11 - 3), -(23 - 4)}; in ZTEST() local
112 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
114 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
122 struct cfb_position start = {display_width - 5, -(23 - 8)}; in ZTEST() local
123 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
125 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
133 struct cfb_position start = {display_width - 3, display_height - 5}; in ZTEST() local
134 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
136 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
146 struct cfb_position start = {-(11 - 3), display_height - 14}; in ZTEST() local
147 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
149 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()