Home
last modified time | relevance | path

Searched refs:stack_value (Results 1 – 1 of 1) sorted by relevance

/linux-6.1.9/arch/loongarch/kernel/
Dmodule.c21 static int rela_stack_push(s64 stack_value, s64 *rela_stack, size_t *rela_stack_top) in rela_stack_push() argument
26 rela_stack[(*rela_stack_top)++] = stack_value; in rela_stack_push()
27 pr_debug("%s stack_value = 0x%llx\n", __func__, stack_value); in rela_stack_push()
32 static int rela_stack_pop(s64 *stack_value, s64 *rela_stack, size_t *rela_stack_top) in rela_stack_pop() argument
37 *stack_value = rela_stack[--(*rela_stack_top)]; in rela_stack_pop()
38 pr_debug("%s stack_value = 0x%llx\n", __func__, *stack_value); in rela_stack_pop()