HomeSort by relevance Sort by last modified time
    Searched refs:XY0 (Results 1 - 2 of 2) sorted by null

  /external/scrypt/lib/crypto/
crypto_scrypt-neon.c 197 void * B0, * V0, * XY0;
232 if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0)
234 XY = (uint32_t *)(XY0);
244 if ((XY0 = malloc(256 * r + 64 + 63)) == NULL)
246 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
292 free(XY0);
299 free(XY0);
crypto_scrypt-sse.c 270 void * B0, * V0, * XY0;
305 if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0)
307 XY = (uint32_t *)(XY0);
317 if ((XY0 = malloc(256 * r + 64 + 63)) == NULL)
319 XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
365 free(XY0);
372 free(XY0);

Completed in 183 milliseconds