Lines Matching refs:pos
52 struct cfb_position pos = {0, 0}; in ZTEST() local
54 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
62 struct cfb_position pos = {1, 1}; in ZTEST() local
64 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
75 struct cfb_position pos = {9, 15}; in ZTEST() local
77 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
85 struct cfb_position pos = {10, 16}; in ZTEST() local
87 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
95 struct cfb_position pos = {11, 17}; in ZTEST() local
97 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
105 struct cfb_position pos = {10, 0}; in ZTEST() local
107 pos.y = 7; in ZTEST()
108 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
110 pos.y = 8; in ZTEST()
111 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
113 pos.y = 9; in ZTEST()
114 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
124 struct cfb_position pos = {0, -1}; in ZTEST() local
126 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
134 struct cfb_position pos = {display_width, 0}; in ZTEST() local
136 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
144 struct cfb_position pos = {0, display_height}; in ZTEST() local
146 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()
154 struct cfb_position pos = {-1, display_height}; in ZTEST() local
156 zassert_ok(cfb_draw_point(dev, &pos)); in ZTEST()