Lines Matching refs:php_uint32
523 #define PHAR_ZIP_32(var) ((php_uint32)((((php_uint32)var[0]) & 0xff) | \
524 (((php_uint32)var[1]) & 0xff) << 8 | \
525 (((php_uint32)var[2]) & 0xff) << 16 | \
526 (((php_uint32)var[3]) & 0xff) << 24))
609 php_uint32 buf_len;
662 static int phar_parse_pharfile(php_stream *fp, char *fname, int fname_len, char *alias, int alias_len, long halt_offset, phar_archive_data** pphar, php_uint32 compression, char **error TSRMLS_DC) /* {{{ */
667 php_uint32 manifest_len, manifest_count, manifest_flags, manifest_index, tmp_len, sig_flags;
790 php_uint32 signature_len;
1579 php_uint32 compression = PHAR_FILE_COMPRESSED_NONE;
2408 int phar_postprocess_file(phar_entry_data *idata, php_uint32 crc32, char **error, int process_zip TSRMLS_DC) /* {{{ */
2410 php_uint32 crc = ~0;
2581 php_uint32 manifest_len, mytime, loc, new_manifest_count;
2582 php_uint32 newcrc32;
2913 entry->compressed_filesize = (php_uint32) php_stream_tell(entry->cfp);