Home | History | Annotate | Download | only in libjpeg-turbo

Lines Matching defs:maxaccess

157   JDIMENSION maxaccess;         /* max rows accessed by access_virt_sarray */
173 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
530 * buffer must be at least as large as the maxaccess value.
546 * num_rows = maxaccess. This means we can get good performance with simple
557 JDIMENSION maxaccess)
574 result->maxaccess = maxaccess;
587 JDIMENSION maxaccess)
604 result->maxaccess = maxaccess;
624 /* Compute the minimum space needed (maxaccess rows in each buffer)
632 space_per_minheight += (long) sptr->maxaccess *
640 space_per_minheight += (long) bptr->maxaccess *
673 minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
679 sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
697 minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
703 bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
799 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
884 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||