Lines Matching refs:hi20
92 s32 hi20; in apply_r_riscv_pcrel_hi20_rela() local
101 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_pcrel_hi20_rela()
102 *location = (*location & 0xfff) | hi20; in apply_r_riscv_pcrel_hi20_rela()
134 s32 hi20; in apply_r_riscv_hi20_rela() local
143 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_hi20_rela()
144 *location = (*location & 0xfff) | hi20; in apply_r_riscv_hi20_rela()
152 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_i_rela() local
153 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_i_rela()
162 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_s_rela() local
163 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_s_rela()
174 s32 hi20; in apply_r_riscv_got_hi20_rela() local
187 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_got_hi20_rela()
188 *location = (*location & 0xfff) | hi20; in apply_r_riscv_got_hi20_rela()
197 u32 hi20, lo12; in apply_r_riscv_call_plt_rela() local
212 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_plt_rela()
213 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_plt_rela()
214 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_plt_rela()
224 u32 hi20, lo12; in apply_r_riscv_call_rela() local
233 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_rela()
234 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_rela()
235 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_rela()
351 s32 hi20, lo12; in apply_relocate_add() local
367 hi20 = (offset + 0x800) & 0xfffff000; in apply_relocate_add()
368 lo12 = offset - hi20; in apply_relocate_add()