Lines Matching refs:ltemp
404 long ltemp; in alloc_sarray() local
407 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) / in alloc_sarray()
409 if (ltemp <= 0) in alloc_sarray()
411 if (ltemp < (long) numrows) in alloc_sarray()
412 rowsperchunk = (JDIMENSION) ltemp; in alloc_sarray()
452 long ltemp; in alloc_barray() local
455 ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) / in alloc_barray()
457 if (ltemp <= 0) in alloc_barray()
459 if (ltemp < (long) numrows) in alloc_barray()
460 rowsperchunk = (JDIMENSION) ltemp; in alloc_barray()
793 long ltemp; in access_virt_sarray() local
795 ltemp = (long) end_row - (long) ptr->rows_in_mem; in access_virt_sarray()
796 if (ltemp < 0) in access_virt_sarray()
797 ltemp = 0; /* don't fall off front end of file */ in access_virt_sarray()
798 ptr->cur_start_row = (JDIMENSION) ltemp; in access_virt_sarray()
878 long ltemp; in access_virt_barray() local
880 ltemp = (long) end_row - (long) ptr->rows_in_mem; in access_virt_barray()
881 if (ltemp < 0) in access_virt_barray()
882 ltemp = 0; /* don't fall off front end of file */ in access_virt_barray()
883 ptr->cur_start_row = (JDIMENSION) ltemp; in access_virt_barray()