mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-11 17:55:54 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
31 lines
954 B
C
31 lines
954 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _XOR_H
|
|
#define _XOR_H
|
|
|
|
#define MAX_XOR_BLOCKS 4
|
|
|
|
extern void xor_blocks(unsigned int count, unsigned int bytes,
|
|
void *dest, void **srcs);
|
|
|
|
struct xor_block_template {
|
|
struct xor_block_template *next;
|
|
const char *name;
|
|
int speed;
|
|
void (*do_2)(unsigned long, unsigned long * __restrict,
|
|
const unsigned long * __restrict);
|
|
void (*do_3)(unsigned long, unsigned long * __restrict,
|
|
const unsigned long * __restrict,
|
|
const unsigned long * __restrict);
|
|
void (*do_4)(unsigned long, unsigned long * __restrict,
|
|
const unsigned long * __restrict,
|
|
const unsigned long * __restrict,
|
|
const unsigned long * __restrict);
|
|
void (*do_5)(unsigned long, unsigned long * __restrict,
|
|
const unsigned long * __restrict,
|
|
const unsigned long * __restrict,
|
|
const unsigned long * __restrict,
|
|
const unsigned long * __restrict);
|
|
};
|
|
|
|
#endif
|