Searched refs:XY0 (Results 1 – 3 of 3) sorted by relevance
/external/scrypt/lib/crypto/ |
D | crypto_scrypt-neon.c | 196 void * B0, * V0, * XY0; in crypto_scrypt() local 231 if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0) in crypto_scrypt() 233 XY = (uint32_t *)(XY0); in crypto_scrypt() 243 if ((XY0 = malloc(256 * r + 64 + 63)) == NULL) in crypto_scrypt() 245 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63)); in crypto_scrypt() 291 free(XY0); in crypto_scrypt() 298 free(XY0); in crypto_scrypt()
|
D | crypto_scrypt-sse.c | 270 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/ |
D | arm_neon.patch | 328 + void * B0, * V0, * XY0; 363 + if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0) 365 + XY = (uint32_t *)(XY0); 375 + if ((XY0 = malloc(256 * r + 64 + 63)) == NULL) 377 + XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63)); 423 + free(XY0); 430 + free(XY0);
|