Lines Matching refs:height
102 height (height_),
109 height (height_),
111 data ((color_t *) malloc (sizeof (data[0]) * width * height)),
128 assert (y < height);
130 color_t *p = data + x + MIN (y + row, height - 1) * stride;
147 const unsigned int height;
159 biimage_t (unsigned int width, unsigned int height) :
161 height (height),
163 data ((uint8_t *) malloc (sizeof (data[0]) * width * height)) {}
170 assert (image.height == height);
172 for (unsigned int y = 0; y < height; y++)
195 memset (data, 0, sizeof (data[0]) * width * height);
203 for (unsigned int y = 0; y < height; y++)
217 const unsigned int height;
230 assert (bi.height <= CELL_H);
241 for (unsigned int y = 0; y < bi.height; y++)
249 quad[2 * y / bi.height][2 * x / bi.width] += c;
250 quad_i[2 * y / bi.height][2 * x / bi.width] += c_i;
256 for (unsigned int i = 1; i < bi.height; i++) {
285 for (unsigned int i = 0; i < bi.height - 1; i++)
303 unsigned int which = lround ((double) ((best_i + 1) * 8) / bi.height);
384 unsigned int height,
387 image_t image (width, height, data, stride);
389 unsigned int rows = (height + CELL_H - 1) / CELL_H;