Home
last modified time | relevance | path

Searched refs:XY0 (Results 1 – 3 of 3) sorted by relevance

/external/scrypt/lib/crypto/
Dcrypto_scrypt-neon.c197 void * B0, * V0, * XY0; in crypto_scrypt() local
232 if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0) in crypto_scrypt()
234 XY = (uint32_t *)(XY0); in crypto_scrypt()
244 if ((XY0 = malloc(256 * r + 64 + 63)) == NULL) in crypto_scrypt()
246 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63)); in crypto_scrypt()
292 free(XY0); in crypto_scrypt()
299 free(XY0); in crypto_scrypt()
Dcrypto_scrypt-sse.c270 void * B0, * V0, * XY0; in crypto_scrypt() local
305 if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0) in crypto_scrypt()
307 XY = (uint32_t *)(XY0); in crypto_scrypt()
317 if ((XY0 = malloc(256 * r + 64 + 63)) == NULL) in crypto_scrypt()
319 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63)); in crypto_scrypt()
365 free(XY0); in crypto_scrypt()
372 free(XY0); in crypto_scrypt()
/external/scrypt/patches/
Darm-neon.patch329 + void * B0, * V0, * XY0;
364 + if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0)
366 + XY = (uint32_t *)(XY0);
376 + if ((XY0 = malloc(256 * r + 64 + 63)) == NULL)
378 + XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
424 + free(XY0);
431 + free(XY0);