Symbol: STACK_ALIGN
arch/loongarch/kernel/process.c
344
return sp & STACK_ALIGN;
arch/parisc/net/bpf_jit_comp32.c
1484
bpf_stack_adjust = round_up(bpf_stack_adjust, STACK_ALIGN);
arch/parisc/net/bpf_jit_comp32.c
1493
stack_adjust = round_up(stack_adjust, STACK_ALIGN);
arch/parisc/net/bpf_jit_comp32.c
891
const int offset_sp = 2 * STACK_ALIGN;
arch/parisc/net/bpf_jit_comp64.c
1114
bpf_stack_adjust = round_up(bpf_stack_adjust, STACK_ALIGN);
arch/parisc/net/bpf_jit_comp64.c
1117
stack_adjust = round_up(stack_adjust, STACK_ALIGN);
arch/riscv/include/asm/processor.h
143
- ALIGN(sizeof(struct pt_regs), STACK_ALIGN)))
arch/riscv/kernel/asm-offsets.c
497
DEFINE(PT_SIZE_ON_STACK, ALIGN(sizeof(struct pt_regs), STACK_ALIGN));
arch/riscv/kernel/asm-offsets.c
503
DEFINE(STACKFRAME_SIZE_ON_STACK, ALIGN(sizeof(struct stackframe), STACK_ALIGN));
arch/riscv/kernel/asm-offsets.c
514
DEFINE(FREGS_SIZE_ON_STACK, ALIGN(sizeof(struct __arch_ftrace_regs), STACK_ALIGN));
arch/riscv/net/bpf_jit_comp32.c
1309
round_up(ctx->prog->aux->stack_depth, STACK_ALIGN);
arch/riscv/net/bpf_jit_comp32.c
1318
stack_adjust = round_up(stack_adjust, STACK_ALIGN);
arch/riscv/net/bpf_jit_comp64.c
1132
stack_size = round_up(stack_size, STACK_ALIGN);
arch/riscv/net/bpf_jit_comp64.c
1999
bpf_stack_adjust = round_up(ctx->prog->aux->stack_depth, STACK_ALIGN);
arch/riscv/net/bpf_jit_comp64.c
2021
stack_adjust = round_up(stack_adjust, STACK_ALIGN);
drivers/char/hw_random/via-rng.c
89
char buf[16 + PADLOCK_ALIGNMENT - STACK_ALIGN] __attribute__
drivers/char/hw_random/via-rng.c
90
((aligned(STACK_ALIGN)));