Lines Matching refs:hi20
96 s32 hi20; in apply_r_riscv_pcrel_hi20_rela() local
105 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_pcrel_hi20_rela()
106 *location = (*location & 0xfff) | hi20; in apply_r_riscv_pcrel_hi20_rela()
138 s32 hi20; in apply_r_riscv_hi20_rela() local
147 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_hi20_rela()
148 *location = (*location & 0xfff) | hi20; in apply_r_riscv_hi20_rela()
156 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_i_rela() local
157 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_i_rela()
166 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_s_rela() local
167 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_s_rela()
178 s32 hi20; in apply_r_riscv_got_hi20_rela() local
191 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_got_hi20_rela()
192 *location = (*location & 0xfff) | hi20; in apply_r_riscv_got_hi20_rela()
201 u32 hi20, lo12; in apply_r_riscv_call_plt_rela() local
216 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_plt_rela()
217 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_plt_rela()
218 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_plt_rela()
228 u32 hi20, lo12; in apply_r_riscv_call_rela() local
237 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_rela()
238 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_rela()
239 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_rela()
371 s32 hi20, lo12; in apply_relocate_add() local
387 hi20 = (offset + 0x800) & 0xfffff000; in apply_relocate_add()
388 lo12 = offset - hi20; in apply_relocate_add()