Lines Matching defs:cells
146 uint32_t *cells = malloc(t->out.width*t->out.height*4);
184 cells[y*t->out.width+x] = color(red, green, blue, alpha);
199 cells[y*tt.width+x])) {
203 cells[y*tt.width+x] & mask,
204 cells[y*tt.width+x],
215 free(cells);
241 static void fill(uint32_t *cells,
261 pixman_fill(cells, max_width, 32, x, y, w, h, pixel);
268 uint32_t *cells = calloc(sizeof(uint32_t), t->out.width*t->out.height);
319 fill(cells, tx, ty, w, h, tt.width, tt.height,
321 fill(cells, x, y, w, h, tt.width, tt.height,
334 if (!pixel_equal(image.depth, result, cells[y*tt.width+x])) {
338 (uint32_t*)image.data, cells,
343 cells[y*tt.width+x] & mask,
344 cells[y*tt.width+x],
355 free(cells);