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) TSRMLS_CC) == FAILURE) {
PHAR_GET_16       251 ext/phar/zip.c 					metadata = pestrndup(metadata, PHAR_GET_16(locator.comment_len), mydata->is_persistent);
PHAR_GET_16       252 ext/phar/zip.c 					ZVAL_STRINGL(mydata->metadata, metadata, PHAR_GET_16(locator.comment_len), 0);
PHAR_GET_16       292 ext/phar/zip.c 	zend_hash_init(&mydata->manifest, PHAR_GET_16(locator.count),
PHAR_GET_16       296 ext/phar/zip.c 	zend_hash_init(&mydata->virtual_dirs, PHAR_GET_16(locator.count) * 2,
PHAR_GET_16       351 ext/phar/zip.c 	for (i = 0; i < PHAR_GET_16(locator.count); ++i) {
PHAR_GET_16       376 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       377 ext/phar/zip.c 			PHAR_GET_16(zipentry.extra_len);
PHAR_GET_16       379 ext/phar/zip.c 		if (PHAR_GET_16(zipentry.flags) & PHAR_ZIP_FLAG_ENCRYPTED) {
PHAR_GET_16       383 ext/phar/zip.c 		if (!PHAR_GET_16(zipentry.filename_len)) {
PHAR_GET_16       387 ext/phar/zip.c 		entry.filename_len = PHAR_GET_16(zipentry.filename_len);
PHAR_GET_16       426 ext/phar/zip.c 				php_stream_write(sigfile, metadata, PHAR_GET_16(locator.comment_len));
PHAR_GET_16       428 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       453 ext/phar/zip.c 			if (i != PHAR_GET_16(locator.count) - 1) {
PHAR_GET_16       462 ext/phar/zip.c 		if (PHAR_GET_16(zipentry.extra_len)) {
PHAR_GET_16       464 ext/phar/zip.c 			if (FAILURE == phar_zip_process_extra(fp, &entry, PHAR_GET_16(zipentry.extra_len) TSRMLS_CC)) {
PHAR_GET_16       468 ext/phar/zip.c 			php_stream_seek(fp, loc + PHAR_GET_16(zipentry.extra_len), SEEK_SET);
PHAR_GET_16       471 ext/phar/zip.c 		switch (PHAR_GET_16(zipentry.compressed)) {
PHAR_GET_16       531 ext/phar/zip.c 		if (PHAR_GET_16(zipentry.comment_len)) {
PHAR_GET_16       532 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       538 ext/phar/zip.c 			entry.metadata_len = PHAR_GET_16(zipentry.comment_len);
PHAR_GET_16       540 ext/phar/zip.c 			if (phar_parse_metadata(&p, &(entry.metadata), PHAR_GET_16(zipentry.comment_len) TSRMLS_CC) == FAILURE) {
PHAR_GET_16       551 ext/phar/zip.c 				ZVAL_STRINGL(entry.metadata, pestrndup(buf, PHAR_GET_16(zipentry.comment_len), entry.is_persistent), PHAR_GET_16(zipentry.comment_len), 0);
PHAR_GET_16       573 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       580 ext/phar/zip.c 				sizeof(local) + entry.header_offset + PHAR_GET_16(local.filename_len) + PHAR_GET_16(local.extra_len);