Lines Matching refs:hi20

100 	s32 hi20;  in apply_r_riscv_pcrel_hi20_rela()  local
109 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_pcrel_hi20_rela()
110 *location = (*location & 0xfff) | hi20; in apply_r_riscv_pcrel_hi20_rela()
142 s32 hi20; in apply_r_riscv_hi20_rela() local
151 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_hi20_rela()
152 *location = (*location & 0xfff) | hi20; in apply_r_riscv_hi20_rela()
160 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_i_rela() local
161 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_i_rela()
170 s32 hi20 = ((s32)v + 0x800) & 0xfffff000; in apply_r_riscv_lo12_s_rela() local
171 s32 lo12 = ((s32)v - hi20); in apply_r_riscv_lo12_s_rela()
182 s32 hi20; in apply_r_riscv_got_hi20_rela() local
195 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_got_hi20_rela()
196 *location = (*location & 0xfff) | hi20; in apply_r_riscv_got_hi20_rela()
205 u32 hi20, lo12; in apply_r_riscv_call_plt_rela() local
220 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_plt_rela()
221 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_plt_rela()
222 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_plt_rela()
232 u32 hi20, lo12; in apply_r_riscv_call_rela() local
241 hi20 = (offset + 0x800) & 0xfffff000; in apply_r_riscv_call_rela()
242 lo12 = (offset - hi20) & 0xfff; in apply_r_riscv_call_rela()
243 *location = (*location & 0xfff) | hi20; in apply_r_riscv_call_rela()
359 s32 hi20, lo12; in apply_relocate_add() local
375 hi20 = (offset + 0x800) & 0xfffff000; in apply_relocate_add()
376 lo12 = offset - hi20; in apply_relocate_add()