Lines Matching refs:hi20
109 s32 hi20; in apply_r_riscv_pcrel_hi20_rela() local
118 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_pcrel_hi20_rela()
119 *location = (*location & 0xfff) | hi20; in apply_r_riscv_pcrel_hi20_rela()
151 s32 hi20; in apply_r_riscv_hi20_rela() local
160 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_hi20_rela()
161 *location = (*location & 0xfff) | hi20; in apply_r_riscv_hi20_rela()
169 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_i_rela() local
170 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_i_rela()
179 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_s_rela() local
180 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_s_rela()
191 s32 hi20; in apply_r_riscv_got_hi20_rela() local
204 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_got_hi20_rela()
205 *location = (*location & 0xfff) | hi20; in apply_r_riscv_got_hi20_rela()
213 u32 hi20, lo12; in apply_r_riscv_call_plt_rela() local
228 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_plt_rela()
229 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_plt_rela()
230 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_plt_rela()
239 u32 hi20, lo12; in apply_r_riscv_call_rela() local
248 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_rela()
249 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_rela()
250 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_rela()
382 s32 hi20, lo12; in apply_relocate_add() local
398 hi20 = (offset + 0x800) & 0xfffff000; in apply_relocate_add()
399 lo12 = offset - hi20; in apply_relocate_add()