Lines Matching refs:entrycount
225 int entrycount = 0; in ReadZip() local
268 temp_entries[entrycount].data_offset = hoffset+30+nlen+xlen; in ReadZip()
269 temp_entries[entrycount].deflate_len = clen; in ReadZip()
270 temp_entries[entrycount].uncomp_len = ulen; in ReadZip()
271 temp_entries[entrycount].filename = filename; in ReadZip()
272 ++entrycount; in ReadZip()
275 qsort(temp_entries, entrycount, sizeof(ZipFileEntry), fileentry_compare); in ReadZip()
278 printf("found %d deflated entries\n", entrycount); in ReadZip()
279 for (i = 0; i < entrycount; ++i) { in ReadZip()
290 *chunks = reinterpret_cast<ImageChunk*>(malloc((entrycount*2+2) * sizeof(ImageChunk))); in ReadZip()
308 if (nextentry < entrycount && pos == temp_entries[nextentry].data_offset) { in ReadZip()
352 if (nextentry < entrycount) { in ReadZip()