PHAR_GET_16        57 ext/phar/zip.c 			php_stream_seek(fp, PHAR_GET_16(h.header.size), SEEK_CUR);
PHAR_GET_16        58 ext/phar/zip.c 			len -= PHAR_GET_16(h.header.size) + 4;
PHAR_GET_16        70 ext/phar/zip.c 		if (PHAR_GET_16(h.unix3.size) > sizeof(h.unix3) - 4) {
PHAR_GET_16        72 ext/phar/zip.c 			php_stream_seek(fp, PHAR_GET_16(h.unix3.size) - sizeof(h.unix3.size), SEEK_CUR);
PHAR_GET_16        79 ext/phar/zip.c 			entry->flags |= PHAR_GET_16(h.unix3.perms) & PHAR_ENT_PERM_MASK;
PHAR_GET_16        81 ext/phar/zip.c 			entry->flags |= PHAR_GET_16(h.unix3.perms) & PHAR_ENT_PERM_MASK;
PHAR_GET_16       125 ext/phar/zip.c 	int dtime = PHAR_GET_16(cdtime), ddate = PHAR_GET_16(cddate);
PHAR_GET_16       204 ext/phar/zip.c 			if (PHAR_GET_16(locator.centraldisk) != 0 || PHAR_GET_16(locator.disknumber) != 0) {
PHAR_GET_16       213 ext/phar/zip.c 			if (PHAR_GET_16(locator.counthere) != PHAR_GET_16(locator.count)) {
PHAR_GET_16       225 ext/phar/zip.c 			if (PHAR_GET_16(locator.comment_len)) {
PHAR_GET_16       229 ext/phar/zip.c 				if (PHAR_GET_16(locator.comment_len) != size - (metadata - buf)) {
PHAR_GET_16       238 ext/phar/zip.c 				mydata->metadata_len = PHAR_GET_16(locator.comment_len);
PHAR_GET_16       240 ext/phar/zip.c 				if (phar_parse_metadata(&metadata, &mydata->metadata, PHAR_GET_16(locator.comment_len)) == FAILURE) {
PHAR_GET_16       244 ext/phar/zip.c 					ZVAL_NEW_STR(&mydata->metadata, zend_string_init(metadata, PHAR_GET_16(locator.comment_len), mydata->is_persistent));
PHAR_GET_16       284 ext/phar/zip.c 	zend_hash_init(&mydata->manifest, PHAR_GET_16(locator.count),
PHAR_GET_16       288 ext/phar/zip.c 	zend_hash_init(&mydata->virtual_dirs, PHAR_GET_16(locator.count) * 2,
PHAR_GET_16       339 ext/phar/zip.c 	for (i = 0; i < PHAR_GET_16(locator.count); ++i) {
PHAR_GET_16       364 ext/phar/zip.c 		entry.offset = entry.offset_abs = PHAR_GET_32(zipentry.offset) + sizeof(phar_zip_file_header) + PHAR_GET_16(zipentry.filename_len) +
PHAR_GET_16       365 ext/phar/zip.c 			PHAR_GET_16(zipentry.extra_len);
PHAR_GET_16       367 ext/phar/zip.c 		if (PHAR_GET_16(zipentry.flags) & PHAR_ZIP_FLAG_ENCRYPTED) {
PHAR_GET_16       371 ext/phar/zip.c 		if (!PHAR_GET_16(zipentry.filename_len)) {
PHAR_GET_16       375 ext/phar/zip.c 		entry.filename_len = PHAR_GET_16(zipentry.filename_len);
PHAR_GET_16       416 ext/phar/zip.c 				php_stream_write(sigfile, metadata, PHAR_GET_16(locator.comment_len));
PHAR_GET_16       418 ext/phar/zip.c 			php_stream_seek(fp, sizeof(phar_zip_file_header) + entry.header_offset + entry.filename_len + PHAR_GET_16(zipentry.extra_len), SEEK_SET);
PHAR_GET_16       443 ext/phar/zip.c 			if (i != PHAR_GET_16(locator.count) - 1) {
PHAR_GET_16       452 ext/phar/zip.c 		if (PHAR_GET_16(zipentry.extra_len)) {
PHAR_GET_16       454 ext/phar/zip.c 			if (FAILURE == phar_zip_process_extra(fp, &entry, PHAR_GET_16(zipentry.extra_len))) {
PHAR_GET_16       458 ext/phar/zip.c 			php_stream_seek(fp, loc + PHAR_GET_16(zipentry.extra_len), SEEK_SET);
PHAR_GET_16       461 ext/phar/zip.c 		switch (PHAR_GET_16(zipentry.compressed)) {
PHAR_GET_16       521 ext/phar/zip.c 		if (PHAR_GET_16(zipentry.comment_len)) {
PHAR_GET_16       522 ext/phar/zip.c 			if (PHAR_GET_16(zipentry.comment_len) != php_stream_read(fp, buf, PHAR_GET_16(zipentry.comment_len))) {
PHAR_GET_16       528 ext/phar/zip.c 			entry.metadata_len = PHAR_GET_16(zipentry.comment_len);
PHAR_GET_16       530 ext/phar/zip.c 			if (phar_parse_metadata(&p, &(entry.metadata), PHAR_GET_16(zipentry.comment_len)) == FAILURE) {
PHAR_GET_16       534 ext/phar/zip.c 				ZVAL_NEW_STR(&entry.metadata, zend_string_init(buf, PHAR_GET_16(zipentry.comment_len), entry.is_persistent));
PHAR_GET_16       556 ext/phar/zip.c 			if (entry.filename_len != PHAR_GET_16(local.filename_len) || entry.crc32 != PHAR_GET_32(local.crc32) || entry.uncompressed_filesize != PHAR_GET_32(local.uncompsize) || entry.compressed_filesize != PHAR_GET_32(local.compsize)) {
PHAR_GET_16       563 ext/phar/zip.c 				sizeof(local) + entry.header_offset + PHAR_GET_16(local.filename_len) + PHAR_GET_16(local.extra_len);