Lines Matching defs:sym_off
355 int sym_off;
4501 reloc_desc->sym_off = sym->st_value;
4524 reloc_desc->sym_off = sym->st_value;
4560 reloc_desc->sym_off = 0; /* sym->st_value determines map_idx */
4588 reloc_desc->sym_off = sym->st_value;
6392 insn[1].imm = insn[0].imm + relo->sym_off;
6718 * for subprog addr relocation, the relo->sym_off + insn->imm is
6722 sub_insn_idx = relo->sym_off / BPF_INSN_SZ + insn->imm + 1;
6724 sub_insn_idx = (relo->sym_off + insn->imm) / BPF_INSN_SZ;
11878 long sym_off;
11881 sym_off = elf_find_func_offset_from_archive(archive_path, binary_path,
11885 sym_off = elf_find_func_offset_from_file(binary_path, func_name);
11887 if (sym_off < 0)
11888 return libbpf_err_ptr(sym_off);
11889 func_offset += sym_off;