Lines Matching refs:temp_entries
221 ZipFileEntry* temp_entries = malloc(cdcount * sizeof(ZipFileEntry)); in ReadZip() local
265 temp_entries[entrycount].data_offset = hoffset+30+nlen+xlen; in ReadZip()
266 temp_entries[entrycount].deflate_len = clen; in ReadZip()
267 temp_entries[entrycount].uncomp_len = ulen; in ReadZip()
268 temp_entries[entrycount].filename = filename; in ReadZip()
272 qsort(temp_entries, entrycount, sizeof(ZipFileEntry), fileentry_compare); in ReadZip()
278 temp_entries[i].data_offset, in ReadZip()
279 temp_entries[i].deflate_len, in ReadZip()
280 temp_entries[i].uncomp_len, in ReadZip()
281 temp_entries[i].filename, in ReadZip()
282 temp_entries[i].filename); in ReadZip()
305 if (nextentry < entrycount && pos == temp_entries[nextentry].data_offset) { in ReadZip()
308 curr->deflate_len = temp_entries[nextentry].deflate_len; in ReadZip()
310 curr->filename = temp_entries[nextentry].filename; in ReadZip()
313 curr->len = temp_entries[nextentry].uncomp_len; in ReadZip()
350 curr->len = temp_entries[nextentry].data_offset - pos; in ReadZip()
363 free(temp_entries); in ReadZip()