Home
last modified time | relevance | path

Searched refs:read_this (Results 1 – 1 of 1) sorted by relevance

/external/zlib/src/contrib/minizip/
Dzip.c821 ZPOS64_T read_this = SIZEDATA_INDATABLOCK; in LoadCentralDirectoryRecord() local
822 if (read_this > size_central_dir_to_read) in LoadCentralDirectoryRecord()
823 read_this = size_central_dir_to_read; in LoadCentralDirectoryRecord()
825 if (ZREAD64(pziinit->z_filefunc, pziinit->filestream,buf_read,(uLong)read_this) != read_this) in LoadCentralDirectoryRecord()
829 err = add_data_in_datablock(&pziinit->central_dir,buf_read, (uLong)read_this); in LoadCentralDirectoryRecord()
831 size_central_dir_to_read-=read_this; in LoadCentralDirectoryRecord()