Home | History | Annotate | Download | only in libjpeg

Lines Matching defs:maxaccess

156   JDIMENSION maxaccess;		/* max rows accessed by access_virt_sarray */
172 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
500 * buffer must be at least as large as the maxaccess value.
516 * num_rows = maxaccess. This means we can get good performance with simple
527 JDIMENSION maxaccess)
544 result->maxaccess = maxaccess;
557 JDIMENSION maxaccess)
574 result->maxaccess = maxaccess;
594 /* Compute the minimum space needed (maxaccess rows in each buffer)
602 space_per_minheight += (long) sptr->maxaccess *
610 space_per_minheight += (long) bptr->maxaccess *
643 minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
649 sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
667 minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
673 bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
769 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
854 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||