Home
last modified time | relevance | path

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

/openbmc/linux/arch/loongarch/kernel/
H A Dmodule.c24 static int rela_stack_push(s64 stack_value, s64 *rela_stack, size_t *rela_stack_top) in rela_stack_push() argument
29 rela_stack[(*rela_stack_top)++] = stack_value; in rela_stack_push()
30 pr_debug("%s stack_value = 0x%llx\n", __func__, stack_value); in rela_stack_push()
35 static int rela_stack_pop(s64 *stack_value, s64 *rela_stack, size_t *rela_stack_top) in rela_stack_pop() argument
40 *stack_value = rela_stack[--(*rela_stack_top)]; in rela_stack_pop()
41 pr_debug("%s stack_value = 0x%llx\n", __func__, *stack_value); in rela_stack_pop()