Symbol: xor_block_template
lib/raid/xor/alpha/xor.c
837
struct xor_block_template xor_block_alpha = {
lib/raid/xor/alpha/xor.c
845
struct xor_block_template xor_block_alpha_prefetch = {
lib/raid/xor/alpha/xor_arch.h
5
extern struct xor_block_template xor_block_alpha;
lib/raid/xor/alpha/xor_arch.h
6
extern struct xor_block_template xor_block_alpha_prefetch;
lib/raid/xor/arm/xor-neon-glue.c
16
struct xor_block_template xor_block_neon = {
lib/raid/xor/arm/xor-neon.h
3
extern struct xor_block_template xor_block_arm4regs;
lib/raid/xor/arm/xor-neon.h
4
extern struct xor_block_template xor_block_neon;
lib/raid/xor/arm/xor.c
133
struct xor_block_template xor_block_arm4regs = {
lib/raid/xor/arm64/xor-neon-glue.c
20
struct xor_block_template xor_block_##_name = { \
lib/raid/xor/arm64/xor_arch.h
8
extern struct xor_block_template xor_block_neon;
lib/raid/xor/arm64/xor_arch.h
9
extern struct xor_block_template xor_block_eor3;
lib/raid/xor/loongarch/xor_arch.h
16
extern struct xor_block_template xor_block_lsx;
lib/raid/xor/loongarch/xor_arch.h
17
extern struct xor_block_template xor_block_lasx;
lib/raid/xor/loongarch/xor_simd_glue.c
26
struct xor_block_template xor_block_##flavor = { \
lib/raid/xor/powerpc/xor_arch.h
10
extern struct xor_block_template xor_block_altivec;
lib/raid/xor/powerpc/xor_vmx_glue.c
25
struct xor_block_template xor_block_altivec = {
lib/raid/xor/riscv/xor-glue.c
22
struct xor_block_template xor_block_rvv = {
lib/raid/xor/riscv/xor_arch.h
7
extern struct xor_block_template xor_block_rvv;
lib/raid/xor/s390/xor.c
130
struct xor_block_template xor_block_xc = {
lib/raid/xor/s390/xor_arch.h
8
extern struct xor_block_template xor_block_xc;
lib/raid/xor/sparc/xor-sparc32.c
249
struct xor_block_template xor_block_SPARC = {
lib/raid/xor/sparc/xor-sparc64-glue.c
33
struct xor_block_template xor_block_VIS = {
lib/raid/xor/sparc/xor-sparc64-glue.c
56
struct xor_block_template xor_block_niagara = {
lib/raid/xor/sparc/xor_arch.h
10
extern struct xor_block_template xor_block_niagara;
lib/raid/xor/sparc/xor_arch.h
27
extern struct xor_block_template xor_block_SPARC;
lib/raid/xor/sparc/xor_arch.h
9
extern struct xor_block_template xor_block_VIS;
lib/raid/xor/x86/xor-avx.c
153
struct xor_block_template xor_block_avx = {
lib/raid/xor/x86/xor-mmx.c
496
struct xor_block_template xor_block_pII_mmx = {
lib/raid/xor/x86/xor-mmx.c
512
struct xor_block_template xor_block_p5_mmx = {
lib/raid/xor/x86/xor-sse.c
440
struct xor_block_template xor_block_sse = {
lib/raid/xor/x86/xor-sse.c
456
struct xor_block_template xor_block_sse_pf64 = {
lib/raid/xor/x86/xor_arch.h
4
extern struct xor_block_template xor_block_pII_mmx;
lib/raid/xor/x86/xor_arch.h
5
extern struct xor_block_template xor_block_p5_mmx;
lib/raid/xor/x86/xor_arch.h
6
extern struct xor_block_template xor_block_sse;
lib/raid/xor/x86/xor_arch.h
7
extern struct xor_block_template xor_block_sse_pf64;
lib/raid/xor/x86/xor_arch.h
8
extern struct xor_block_template xor_block_avx;
lib/raid/xor/xor-32regs-prefetch.c
264
struct xor_block_template xor_block_32regs_p = {
lib/raid/xor/xor-32regs.c
214
struct xor_block_template xor_block_32regs = {
lib/raid/xor/xor-8regs-prefetch.c
143
struct xor_block_template xor_block_8regs_p = {
lib/raid/xor/xor-8regs.c
98
struct xor_block_template xor_block_8regs = {
lib/raid/xor/xor-core.c
113
struct xor_block_template *f, *fastest;
lib/raid/xor/xor-core.c
46
static struct xor_block_template *__initdata template_list;
lib/raid/xor/xor-core.c
47
static struct xor_block_template *forced_template;
lib/raid/xor/xor-core.c
57
void __init xor_register(struct xor_block_template *tmpl)
lib/raid/xor/xor-core.c
71
void __init xor_force(struct xor_block_template *tmpl)
lib/raid/xor/xor-core.c
80
do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2)
lib/raid/xor/xor_impl.h
48
extern struct xor_block_template xor_block_8regs;
lib/raid/xor/xor_impl.h
49
extern struct xor_block_template xor_block_32regs;
lib/raid/xor/xor_impl.h
50
extern struct xor_block_template xor_block_8regs_p;
lib/raid/xor/xor_impl.h
51
extern struct xor_block_template xor_block_32regs_p;
lib/raid/xor/xor_impl.h
53
void __init xor_register(struct xor_block_template *tmpl);
lib/raid/xor/xor_impl.h
54
void __init xor_force(struct xor_block_template *tmpl);
lib/raid/xor/xor_impl.h
9
struct xor_block_template *next;