Home | History | Annotate | Download | only in crypto

Lines Matching refs:XY

189  * smix(B, r, N, V, XY):
192 * storage XY must be 256r + 64 bytes in length. The value N must be a
193 * power of 2 greater than 1. The arrays B, V, and XY must be aligned to a
197 smix(uint8_t * B, size_t r, uint64_t N, void * V, void * XY)
199 __m128i * X = XY;
200 __m128i * Y = (void *)((uintptr_t)(XY) + 128 * r);
201 __m128i * Z = (void *)((uintptr_t)(XY) + 256 * r);
273 uint32_t * XY;
307 XY = (uint32_t *)(XY0);
319 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
348 smix(&B[i * 128 * r], r, N, V, XY);