Lines Matching refs:num_rows
128 int (* get_rows)(guchar const **rows, void **to_free, int row, int num_rows, void *data),
313 sp_export_get_rows(guchar const **rows, void **to_free, int row, int num_rows, void *data)
321 num_rows = MIN(num_rows, static_cast<int>(ebp->sheight));
322 num_rows = MIN(num_rows, static_cast<int>(ebp->height - row));
328 Geom::IntRect bbox = Geom::IntRect::from_xywh(0, row, ebp->width, num_rows);
334 unsigned char *px = g_new(guchar, num_rows * stride);
337 px, CAIRO_FORMAT_ARGB32, ebp->width, num_rows, stride);
352 convert_pixels_argb32_to_pixbuf(px, ebp->width, num_rows, stride);
354 for (int r = 0; r < num_rows; r++) {
358 return num_rows;