Searched refs:rela_stack_top (Results 1 – 1 of 1) sorted by relevance
| /linux/arch/loongarch/kernel/ |
| H A D | module.c | 36 long *rela_stack, size_t *rela_stack_top, unsigned int type); 38 static int rela_stack_push(long stack_value, long *rela_stack, size_t *rela_stack_top) in rela_stack_push() argument 40 if (*rela_stack_top >= RELA_STACK_DEPTH) in rela_stack_push() 43 rela_stack[(*rela_stack_top)++] = stack_value; in rela_stack_push() 49 static int rela_stack_pop(long *stack_value, long *rela_stack, size_t *rela_stack_top) in rela_stack_pop() argument 51 if (*rela_stack_top == 0) in rela_stack_pop() 54 *stack_value = rela_stack[--(*rela_stack_top)]; in rela_stack_pop() 61 long *rela_stack, size_t *rela_stack_top, unsigned int type) in apply_r_larch_none() argument 67 long *rela_stack, size_t *rela_stack_top, unsigned int type) in apply_r_larch_error() argument 74 long *rela_stack, size_t *rela_stack_top, unsigned int type) in apply_r_larch_32() argument [all …]
|