Home | History | Annotate | Download | only in jpeg-6b

Lines Matching full:maxaccess

154   JDIMENSION maxaccess;		/* max rows accessed by access_virt_sarray */
170 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
498 * buffer must be at least as large as the maxaccess value.
514 * num_rows = maxaccess. This means we can get good performance with simple
525 JDIMENSION maxaccess)
542 result->maxaccess = maxaccess;
555 JDIMENSION maxaccess)
572 result->maxaccess = maxaccess;
592 /* Compute the minimum space needed (maxaccess rows in each buffer)
600 space_per_minheight += (long) sptr->maxaccess *
608 space_per_minheight += (long) bptr->maxaccess *
641 minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
647 sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
665 minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
671 bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
767 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
852 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||