Lines Matching defs:val
10 unsigned long module_emit_got_entry(struct module *mod, unsigned long val);
11 unsigned long module_emit_plt_entry(struct module *mod, unsigned long val);
30 static inline struct got_entry emit_got_entry(unsigned long val)
32 return (struct got_entry) {val};
35 static inline struct got_entry *get_got_entry(unsigned long val,
41 if (got[i].symbol_addr == val)
63 static inline struct plt_entry emit_plt_entry(unsigned long val,
89 static inline int get_got_plt_idx(unsigned long val, const struct mod_section *sec)
94 if (got_plt[i].symbol_addr == val)
100 static inline struct plt_entry *get_plt_entry(unsigned long val,
105 int got_plt_idx = get_got_plt_idx(val, sec_got_plt);