Lines Matching refs:l
109 static void free_relocation_chain(struct mips_hi16 *l) in free_relocation_chain() argument
113 while (l) { in free_relocation_chain()
114 next = l->next; in free_relocation_chain()
115 kfree(l); in free_relocation_chain()
116 l = next; in free_relocation_chain()
123 struct mips_hi16 *l; in apply_r_mips_lo16_rel() local
130 l = me->arch.r_mips_hi16_list; in apply_r_mips_lo16_rel()
131 while (l != NULL) { in apply_r_mips_lo16_rel()
138 if (v != l->value) in apply_r_mips_lo16_rel()
147 insn = *l->addr; in apply_r_mips_lo16_rel()
158 *l->addr = insn; in apply_r_mips_lo16_rel()
160 next = l->next; in apply_r_mips_lo16_rel()
161 kfree(l); in apply_r_mips_lo16_rel()
162 l = next; in apply_r_mips_lo16_rel()
178 free_relocation_chain(l); in apply_r_mips_lo16_rel()