Searched refs:blkxor (Results 1 – 4 of 4) sorted by relevance
/external/scrypt/lib/crypto/ |
D | crypto_scrypt-neon.c | 51 static void blkxor(void *, void *, size_t); 70 blkxor(void * dest, void * src, size_t len) in blkxor() function 97 blkxor(X, &Bin[i * 8], 64); in blockmix_salsa8() 105 blkxor(X, &Bin[i * 8 + 4], 64); in blockmix_salsa8() 167 blkxor(X, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r); in smix() 174 blkxor(Y, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r); in smix()
|
D | crypto_scrypt-sse.c | 50 static void blkxor(void *, void *, size_t); 69 blkxor(void * dest, void * src, size_t len) in blkxor() function 159 blkxor(X, &Bin[i * 8], 64); in blockmix_salsa8() 167 blkxor(X, &Bin[i * 8 + 4], 64); in blockmix_salsa8() 236 blkxor(X, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r); in smix() 243 blkxor(Y, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r); in smix()
|
D | crypto_scrypt-ref.c | 46 static void blkxor(uint8_t *, uint8_t *, size_t); 62 blkxor(uint8_t * dest, uint8_t * src, size_t len) in blkxor() function 144 blkxor(X, &B[i * 64], 64); in blockmix_salsa8() 202 blkxor(X, &V[j * (128 * r)], 128 * r); in smix()
|
/external/scrypt/patches/ |
D | arm_neon.patch | 183 +static void blkxor(void *, void *, size_t); 202 +blkxor(void * dest, void * src, size_t len) 229 + blkxor(X, &Bin[i * 8], 64); 237 + blkxor(X, &Bin[i * 8 + 4], 64); 299 + blkxor(X, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r); 306 + blkxor(Y, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r);
|