Home | History | Annotate | Download | only in libjpeg

Lines Matching defs:maxaccess

155   JDIMENSION maxaccess;		/* max rows accessed by access_virt_sarray */
171 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
499 * buffer must be at least as large as the maxaccess value.
515 * num_rows = maxaccess. This means we can get good performance with simple
526 JDIMENSION maxaccess)
543 result->maxaccess = maxaccess;
556 JDIMENSION maxaccess)
573 result->maxaccess = maxaccess;
593 /* Compute the minimum space needed (maxaccess rows in each buffer)
601 space_per_minheight += (long) sptr->maxaccess *
609 space_per_minheight += (long) bptr->maxaccess *
642 minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
648 sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
666 minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
672 bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
768 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
853 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||