Lines Matching refs:sym_off
344 int sym_off;
4113 reloc_desc->sym_off = sym->st_value;
4136 reloc_desc->sym_off = sym->st_value;
4169 reloc_desc->sym_off = 0; /* sym->st_value determines map_idx */
4197 reloc_desc->sym_off = sym->st_value;
5987 insn[1].imm = insn[0].imm + relo->sym_off;
6281 * for subprog addr relocation, the relo->sym_off + insn->imm is
6285 sub_insn_idx = relo->sym_off / BPF_INSN_SZ + insn->imm + 1;
6287 sub_insn_idx = (relo->sym_off + insn->imm) / BPF_INSN_SZ;
11412 long sym_off;
11415 sym_off = elf_find_func_offset_from_archive(archive_path, binary_path,
11419 sym_off = elf_find_func_offset_from_file(binary_path, func_name);
11421 if (sym_off < 0)
11422 return libbpf_err_ptr(sym_off);
11423 func_offset += sym_off;