Lines Matching refs:ltemp
403 long ltemp; in alloc_sarray() local
406 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) / in alloc_sarray()
408 if (ltemp <= 0) in alloc_sarray()
410 if (ltemp < (long) numrows) in alloc_sarray()
411 rowsperchunk = (JDIMENSION) ltemp; in alloc_sarray()
451 long ltemp; in alloc_barray() local
454 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) / in alloc_barray()
456 if (ltemp <= 0) in alloc_barray()
458 if (ltemp < (long) numrows) in alloc_barray()
459 rowsperchunk = (JDIMENSION) ltemp; in alloc_barray()
792 long ltemp; in access_virt_sarray() local
794 ltemp = (long) end_row - (long) ptr->rows_in_mem; in access_virt_sarray()
795 if (ltemp < 0) in access_virt_sarray()
796 ltemp = 0; /* don't fall off front end of file */ in access_virt_sarray()
797 ptr->cur_start_row = (JDIMENSION) ltemp; in access_virt_sarray()
877 long ltemp; in access_virt_barray() local
879 ltemp = (long) end_row - (long) ptr->rows_in_mem; in access_virt_barray()
880 if (ltemp < 0) in access_virt_barray()
881 ltemp = 0; /* don't fall off front end of file */ in access_virt_barray()
882 ptr->cur_start_row = (JDIMENSION) ltemp; in access_virt_barray()