Lines Matching refs:hi20
110 s32 hi20; in apply_r_riscv_pcrel_hi20_rela() local
119 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_pcrel_hi20_rela()
120 *location = (*location & 0xfff) | hi20; in apply_r_riscv_pcrel_hi20_rela()
152 s32 hi20; in apply_r_riscv_hi20_rela() local
161 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_hi20_rela()
162 *location = (*location & 0xfff) | hi20; in apply_r_riscv_hi20_rela()
170 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_i_rela() local
171 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_i_rela()
180 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_s_rela() local
181 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_s_rela()
192 s32 hi20; in apply_r_riscv_got_hi20_rela() local
205 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_got_hi20_rela()
206 *location = (*location & 0xfff) | hi20; in apply_r_riscv_got_hi20_rela()
214 u32 hi20, lo12; in apply_r_riscv_call_plt_rela() local
229 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_plt_rela()
230 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_plt_rela()
231 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_plt_rela()
240 u32 hi20, lo12; in apply_r_riscv_call_rela() local
249 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_rela()
250 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_rela()
251 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_rela()
383 s32 hi20, lo12; in apply_relocate_add() local
399 hi20 = (offset + 0x800) & 0xfffff000; in apply_relocate_add()
400 lo12 = offset - hi20; in apply_relocate_add()