Searched refs:XY0 (Results 1 – 3 of 3) sorted by relevance
/external/scrypt/lib/crypto/ |
D | crypto_scrypt-neon.c | 197 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()
|
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 | 329 + 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);
|