Home
last modified time | relevance | path

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

/bootable/recovery/applypatch/
Dimgdiff.cpp225 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()
[all …]