Lines Matching defs:width
73 static void gen_cmd_stream(struct etna_cmd_stream *stream, struct etna_bo *bmp, const int width, const int height)
88 etna_set_state(stream, VIVS_DE_DEST_STRIDE, width*4);
104 VIVS_DE_CLIP_BOTTOM_RIGHT_X(width) |
150 int etna_check_image(uint32_t *p, int width, int height)
155 for (i = 0; i < width * height; i++) {
156 if (i%8 < 4 && i%(width*8) < width*4 && i%width < 8*16 && i < width*8*16)
173 const int width = 256;
175 const size_t bmp_size = width * height * 4;
262 gen_cmd_stream(stream, bmp, width, height);
267 bmp_dump32(etna_bo_map(bmp), width, height, false, argv[2]);
269 if (etna_check_image(etna_bo_map(bmp), width, height))