Lines Matching refs:p

70 ZEND_INTRIN_SSE4_2_PCLMUL_FUNC_DECL(size_t crc32_pclmul_batch(uint32_t *crc, const unsigned char *p
71 size_t crc32_pclmul_batch(uint32_t *crc, const unsigned char *p, size_t nr, const crc32_pclmul_cons… in crc32_pclmul_batch() argument
82 x1 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_batch()
86 p += CRC32_FOLDING_BLOCK_SIZE; in crc32_pclmul_batch()
92 x1 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_batch()
94 x2 = _mm_loadu_si128((__m128i *)(p + 0x10)); in crc32_pclmul_batch()
96 x3 = _mm_loadu_si128((__m128i *)(p + 0x20)); in crc32_pclmul_batch()
98 p += CRC32_FOLDING_BLOCK_SIZE * 3; in crc32_pclmul_batch()
113 x8 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_batch()
115 x9 = _mm_loadu_si128((__m128i *)(p + 0x10)); in crc32_pclmul_batch()
117 x10 = _mm_loadu_si128((__m128i *)(p + 0x20)); in crc32_pclmul_batch()
119 x11 = _mm_loadu_si128((__m128i *)(p + 0x30)); in crc32_pclmul_batch()
130 p += CRC32_FOLDING_BLOCK_SIZE * 4; in crc32_pclmul_batch()
154 x2 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_batch()
160 p += CRC32_FOLDING_BLOCK_SIZE; in crc32_pclmul_batch()
187 …ECL(size_t crc32_pclmul_reflected_batch(uint32_t *crc, const unsigned char *p, size_t nr, const cr…
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() argument
197 x0 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_reflected_batch()
199 p += CRC32_FOLDING_BLOCK_SIZE; in crc32_pclmul_reflected_batch()
204 x1 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_reflected_batch()
205 x2 = _mm_loadu_si128((__m128i *)(p + 0x10)); in crc32_pclmul_reflected_batch()
206 x3 = _mm_loadu_si128((__m128i *)(p + 0x20)); in crc32_pclmul_reflected_batch()
207 p += CRC32_FOLDING_BLOCK_SIZE * 3; in crc32_pclmul_reflected_batch()
222 x8 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_reflected_batch()
223 x9 = _mm_loadu_si128((__m128i *)(p + 0x10)); in crc32_pclmul_reflected_batch()
224 x10 = _mm_loadu_si128((__m128i *)(p + 0x20)); in crc32_pclmul_reflected_batch()
225 x11 = _mm_loadu_si128((__m128i *)(p + 0x30)); in crc32_pclmul_reflected_batch()
235 p += CRC32_FOLDING_BLOCK_SIZE * 4; in crc32_pclmul_reflected_batch()
259 x2 = _mm_loadu_si128((__m128i *)(p + 0x00)); in crc32_pclmul_reflected_batch()
264 p += CRC32_FOLDING_BLOCK_SIZE; 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() argument
293 size_t crc32_sse42_pclmul_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t… in crc32_x86_simd_update()
303 return crc32_pclmul_batch(crc, p, nr, consts); in crc32_x86_simd_update()
306 return crc32_pclmul_reflected_batch(crc, p, nr, consts); in crc32_x86_simd_update()
314 …rc32_x86_simd_update_default(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr) in crc32_x86_simd_update_default() argument
320 size_t crc32_x86_simd_update(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, size_t nr)…
322 typedef size_t (*crc32_x86_simd_func_t)(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p,…
333 static size_t (*crc32_x86_simd_ptr)(X86_CRC32_TYPE type, uint32_t *crc, const unsigned char *p, siz…
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() argument
336 return crc32_x86_simd_ptr(type, crc, p, nr); in crc32_x86_simd_update()