HomeSort by relevance Sort by last modified time
    Searched refs:st_value (Results 1 - 25 of 213) sorted by null

1 2 3 4 5 6 7 8 9

  /external/elfutils/0.153/libdwfl/
dwfl_module_addrsym.c 69 return sym->st_value == addr;
117 && sym.st_value <= addr
125 if (sym.st_value + sym.st_size > min_label)
126 min_label = sym.st_value + sym.st_size;
128 if (sym.st_size == 0 || addr - sym.st_value < sym.st_size)
133 || closest_sym->st_value < sym.st_value
144 && sym.st_value >= min_label
160 && closest_sym->st_value == sym.st_value
    [all...]
dwfl_module_getsym.c 108 shndx, &sym->st_value);
117 sym->st_value = dwfl_adjusted_st_value (mod, sym->st_value);
relocate.c 197 sym->st_value = 0; /* Value is size, not helpful. */
202 *shndx, &sym->st_value);
278 sym->st_value = dwfl_adjusted_st_value (m, sym->st_value);
287 shndx, &sym->st_value);
370 value = sym.st_value;
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_elf_symbols.cpp 70 if (sym->st_shndx != SHN_UNDEF && elf_addr >= sym->st_value &&
71 elf_addr < sym->st_value + sym->st_size) {
94 if (elf_addr >= sym->st_value && elf_addr < sym->st_value + sym->st_size) {
102 if (elf_addr < sym->st_value)
103 diff = sym->st_value - elf_addr;
105 diff = elf_addr - sym->st_value - sym->st_size;
117 *sym_addr = reinterpret_cast<void*>(nearest_sym->st_value + load_bias);
crazy_linker_elf_symbols.h 49 return reinterpret_cast<void*>(load_bias + sym->st_value);
  /ndk/sources/android/crazy_linker/src/
crazy_linker_elf_symbols.cpp 70 if (sym->st_shndx != SHN_UNDEF && elf_addr >= sym->st_value &&
71 elf_addr < sym->st_value + sym->st_size) {
94 if (elf_addr >= sym->st_value && elf_addr < sym->st_value + sym->st_size) {
102 if (elf_addr < sym->st_value)
103 diff = sym->st_value - elf_addr;
105 diff = elf_addr - sym->st_value - sym->st_size;
117 *sym_addr = reinterpret_cast<void*>(nearest_sym->st_value + load_bias);
crazy_linker_elf_symbols.h 49 return reinterpret_cast<void*>(load_bias + sym->st_value);
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSymbol.h 50 addr_t st_value; member in class:ELFSymbol_CRTP
105 return st_value;
160 AR & st_value; local
187 AR & st_value; local
  /external/qemu/include/hw/
elf_ops.h 47 bswapSZs(&sym->st_value);
68 if (key->st_value < sym->st_value) {
70 } else if (key->st_value > sym->st_value + sym->st_size) {
82 key.st_value = orig_addr;
96 return (sym0->st_value < sym1->st_value)
98 : ((sym0->st_value > sym1->st_value) ? 1 : 0)
    [all...]
  /external/elfutils/0.153/libelf/
gelf_update_sym.c 97 if (unlikely (src->st_value > 0xffffffffull)
116 COPY (st_value);
gelf_update_symshndx.c 123 if (unlikely (src->st_value > 0xffffffffull)
142 COPY (st_value);
gelf_getsym.c 112 COPY (st_value);
gelf_getsymshndx.c 132 COPY (st_value);
  /external/llvm/test/MC/ARM/
elf-thumbfunc.s 1 @@ test st_value bit 0 of thumb function
17 @@ make sure foo and bar are thumb function: bit 0 = 1 (st_value)
elf-thumbfunc-reloc.s 1 @@ test st_value bit 0 of thumb function
  /external/elfutils/0.153/backends/
ppc_symbol.c 114 /* Check whether given symbol's st_value and st_size are OK despite failing
128 return sym->st_value == gotaddr;
140 && sym->st_value == destshdr->sh_addr + 0x8000
145 && sym->st_value == destshdr->sh_addr + 0x8000
  /art/compiler/
elf_fixup.cc 137 if (symbol->st_value != 0) {
141 symbol->st_value, symbol->st_value + base_address);
143 symbol->st_value += base_address;
  /external/elfutils/0.153/src/
findtextrel.c 559 if (sym->st_value < addr && sym->st_value > lowaddr)
561 lowaddr = sym->st_value;
564 if (sym->st_value > addr && sym->st_value < highaddr)
566 highaddr = sym->st_value;
579 if (sym->st_value + sym->st_size > addr)
nm.c 860 digits, syms[cnt].sym.st_value);
1028 digits, syms[cnt].sym.st_value,
1114 digits, syms[cnt].sym.st_value,
1133 int result = (s1->sym.st_value < s2->sym.st_value
1134 ? -1 : (s1->sym.st_value == s2->sym.st_value ? 0 : 1));
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol-elf.c 753 kmap->ref_reloc_sym->unrelocated_addr = sym.st_value;
789 u32 offset = sym.st_value - syms_ss->opdshdr.sh_addr;
791 sym.st_value = DSO__SWAP(dso, u64, *opd);
793 sym.st_value);
823 (sym.st_value & 1))
824 --sym.st_value;
831 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
880 u64 start = sym.st_value;
919 pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64 " "
921 (u64)sym.st_value, (u64)shdr.sh_addr
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
elf_mem_image.cc 152 return reinterpret_cast<const void *>(sym->st_value);
154 CHECK_LT(link_base_, sym->st_value);
155 return GetTableElement<char>(ehdr_, 0, 1, sym->st_value) - link_base_;
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
elf_mem_image.cc 152 return reinterpret_cast<const void *>(sym->st_value);
154 CHECK_LT(link_base_, sym->st_value);
155 return GetTableElement<char>(ehdr_, 0, 1, sym->st_value) - link_base_;
  /external/lldb/source/Plugins/ObjectFile/ELF/
ELFHeader.cpp 308 st_value,
332 // Read st_value and st_size.
333 if (GetMaxU64(data, offset, &st_value, byte_size, 2) == false)
354 // Read st_value and st_size.
355 if (data.GetU64(offset, &st_value, 2) == NULL)
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 79 uint32_t st_value = 0x0; local
97 st_value = symtab[idx].st_value;
103 st_value = mcld::bswap32(symtab[idx].st_value);
127 uint64_t ld_value = getSymValue(st_value, st_shndx, pInput);
604 uint64_t st_value = 0x0; local
622 st_value = symtab[idx].st_value;
628 st_value = mcld::bswap64(symtab[idx].st_value)
    [all...]
  /bionic/libc/bionic/
vdso.cpp 118 vdso_entries[j].fn = reinterpret_cast<void*>(vdso_addr + symtab[i].st_value);

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 9