Searched refs:crc32_x86_simd_update (Results 1 – 4 of 4) sorted by relevance
/PHP-8.1/ext/standard/ |
H A D | crc32_x86.h | 44 size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr); 46 static inline size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char … in crc32_x86_simd_update() function
|
H A D | crc32_x86.c | 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() function 320 size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr)… 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() function
|
H A D | crc32.c | 102 size_t nr_simd = crc32_x86_simd_update(X86_CRC32B, &crc, (const unsigned char *)p, nr); in php_crc32_bulk_update()
|
/PHP-8.1/ext/hash/ |
H A D | hash_crc32.c | 33 i += crc32_x86_simd_update(X86_CRC32, &context->state, input, len); in PHP_CRC32Update() 46 i += crc32_x86_simd_update(X86_CRC32B, &context->state, input, len); in PHP_CRC32BUpdate() 59 i += crc32_x86_simd_update(X86_CRC32C, &context->state, input, len); in PHP_CRC32CUpdate()
|
Completed in 15 milliseconds