Searched defs:crc (Results 1 – 7 of 7) sorted by relevance
/PHP-8.1/ext/standard/ |
H A D | crc32.c | 66 static uint32_t crc32_aarch64(uint32_t crc, const char *p, size_t nr) { in crc32_aarch64() 92 PHPAPI uint32_t php_crc32_bulk_update(uint32_t crc, const char *p, size_t nr) in php_crc32_bulk_update() 115 PHPAPI int php_crc32_stream_bulk_update(uint32_t *crc, php_stream *fp, size_t nr) in php_crc32_stream_bulk_update() 141 uint32_t crc = php_crc32_bulk_init(); in PHP_FUNCTION() local
|
H A D | crc32_x86.c | 71 size_t crc32_pclmul_batch(uint32_t *crc, const unsigned char *p, size_t nr, const crc32_pclmul_cons… in crc32_pclmul_batch() 188 size_t crc32_pclmul_reflected_batch(uint32_t *crc, const unsigned char *p, size_t nr, const crc32_p… in crc32_pclmul_reflected_batch() 291 size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr) in crc32_x86_simd_update() 314 static size_t crc32_x86_simd_update_default(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char… in crc32_x86_simd_update_default() 335 size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr)… in crc32_x86_simd_update()
|
H A D | crc32.h | 24 #define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff]) argument
|
H A D | crc32_x86.h | 46 static inline size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char … in crc32_x86_simd_update()
|
/PHP-8.1/ext/phar/ |
H A D | zip.c | 855 uint32_t crc = (uint32_t) php_crc32_bulk_init(); in phar_zip_changed_apply_int() local
|
H A D | phar.c | 2388 uint32_t crc = php_crc32_bulk_init(); in phar_postprocess_file() local
|
/PHP-8.1/ext/pcre/pcre2lib/ |
H A D | pcre2_compile.c | 8798 int crc = memcmp(name, slot+IMM2_SIZE, CU2BYTES(length)); in add_name_to_table() local
|
Completed in 57 milliseconds