Home
last modified time | relevance | path

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

/PHP-5.5/ext/zip/lib/
H A Dzip_source_crc.c41 struct crc { struct
46 zip_uint32_t crc; member
57 struct crc *ctx; in zip_source_crc()
64 if ((ctx=(struct crc *)malloc(sizeof(*ctx))) == NULL) { in zip_source_crc()
80 struct crc *ctx; in crc_read()
83 ctx = (struct crc *)_ctx; in crc_read()
88 ctx->crc = crc32(0, NULL, 0); in crc_read()
108 if ((st.valid & ZIP_STAT_CRC) && st.crc != ctx->crc) { in crc_read()
124 ctx->crc = crc32(ctx->crc, data, n); in crc_read()
141 st->crc = ctx->crc; in crc_read()
H A Dzip_source_pkware.c52 static const uLongf *crc = NULL; variable
54 #define CRC32(c, b) (crc[((c) ^ (b)) & 0xff] ^ ((c) >> 8))
83 if (crc == NULL) in zip_source_pkware()
84 crc = get_crc_table(); in zip_source_pkware()
168 if (header[HEADERLEN-1] != st.crc>>24 in decrypt_header()
H A Dzip_stat_index.c70 st->crc = za->cdir->entry[index].crc; in zip_stat_index()
H A Dzip_close.c208 de.crc = za->cdir->entry[i].crc; in zip_close()
277 cd->entry[j].crc = de.crc; in zip_close()
423 de->crc = st.crc; in add_data()
514 uLong crc; in write_cdir() local
528 if (_zip_filerange_crc(out, cd->offset, cd->size, &crc, &za->error) < 0) in write_cdir()
531 snprintf(buf, sizeof(buf), "%08lX", (long)crc); in write_cdir()
H A Dzip_stat_init.c46 st->crc = 0; in zip_stat_init()
H A Dzip_open.c409 && (h1->crc != 0 in _zip_headercomp()
414 && (h2->crc != 0 in _zip_headercomp()
422 if ((h1->crc != h2->crc) in _zip_headercomp()
H A Dzip_dirent.c184 de->crc = 0; in _zip_dirent_init()
274 zde->crc = _zip_read4(&cur); in _zip_dirent_read()
442 _zip_write4(zde->crc, fp); in _zip_dirent_write()
H A Dzip_source_zip.c106 p->st.crc = 0; in zip_source_zip()
H A Dzip.h198 zip_uint32_t crc; /* crc of file data */ member
H A Dzipint.h222 unsigned int crc; /* (cl) CRC-32 of uncompressed data */ member
/PHP-5.5/ext/standard/
H A Dcrc32.c32 register php_uint32 crc; in PHP_NAMED_FUNCTION() local
37 crc = crcinit^0xFFFFFFFF; in PHP_NAMED_FUNCTION()
40 crc = ((crc >> 8) & 0x00FFFFFF) ^ crc32tab[(crc ^ (*p)) & 0xFF ]; in PHP_NAMED_FUNCTION()
42 RETVAL_LONG(crc^0xFFFFFFFF); in PHP_NAMED_FUNCTION()
H A Dcrc32.h28 #define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff]) argument
/PHP-5.5/ext/zip/tests/
H A Dbug49072.phpt15 $r = $o->getStream('file1'); // this file has a wrong crc
/PHP-5.5/ext/phar/
H A Dzip.c805 php_uint32 crc = (php_uint32) ~0; in phar_zip_changed_apply() local
806 CRC32(crc, perms.perms[0]); in phar_zip_changed_apply()
807 CRC32(crc, perms.perms[1]); in phar_zip_changed_apply()
808 PHAR_SET_32(perms.crc32, ~crc); in phar_zip_changed_apply()
H A Dphar.c2410 php_uint32 crc = ~0; local
2477 CRC32(crc, php_stream_getc(fp));
2482 if (~crc == crc32) {
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_compile.c8907 int crc = memcmp(name, slot+IMM2_SIZE, IN_UCHARS(length)); in add_name() local
8908 if (crc == 0 && slot[IMM2_SIZE+length] != 0) in add_name()
8909 crc = -1; /* Current name is a substring */ in add_name()
8916 if (crc < 0) in add_name()
/PHP-5.5/ext/zip/
H A Dphp_zip.c432 add_ascii_assoc_long(return_value, "crc", (long) (sb)->crc); \
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic9928 # 137 P N G \r \n ^Z \n [4-byte length] H E A D [HEAD data] [HEAD crc] ...

Completed in 101 milliseconds