HomeSort by: relevance | last modified time | path
    Searched defs:sym_hash (Results 1 - 25 of 126) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl3/binutils/dist/bfd/
elf-m10200.c 520 struct elf_link_hash_entry *sym_hash = *sym_hashes;
521 if ((sym_hash->root.type == bfd_link_hash_defined
522 || sym_hash->root.type == bfd_link_hash_defweak)
523 && sym_hash->root.u.def.section == sec
524 && sym_hash->root.u.def.value > addr
525 && sym_hash->root.u.def.value < toaddr)
527 sym_hash->root.u.def.value -= count;
1255 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1256 if ((sym_hash->root.type == bfd_link_hash_defined
1257 || sym_hash->root.type == bfd_link_hash_defweak
519 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1254 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-crx.c 678 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
695 /* If the current symbol is identical to 'sym_hash', that means
697 if (*cur_sym_hashes == sym_hash)
705 if ((sym_hash->root.type == bfd_link_hash_defined
706 || sym_hash->root.type == bfd_link_hash_defweak)
707 && sym_hash->root.u.def.section == sec
708 && sym_hash->root.u.def.value > addr
709 && sym_hash->root.u.def.value < toaddr)
710 sym_hash->root.u.def.value -= count;
elf32-ft32.c 923 struct elf_link_hash_entry *sym_hash = *sym_hashes;
939 /* If the current symbol is identical to 'sym_hash', that means
941 if (*cur_sym_hashes == sym_hash)
949 if ((sym_hash->root.type == bfd_link_hash_defined
950 || sym_hash->root.type == bfd_link_hash_defweak)
951 && sym_hash->root.u.def.section == sec
952 && sym_hash->root.u.def.value > addr
953 && sym_hash->root.u.def.value < toaddr)
954 sym_hash->root.u.def.value -= count;
1041 struct elf_link_hash_entry *sym_hash = *sym_hashes
921 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1039 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-m68hc11.c 1272 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1273 if ((sym_hash->root.type == bfd_link_hash_defined
1274 || sym_hash->root.type == bfd_link_hash_defweak)
1275 && sym_hash->root.u.def.section == sec
1276 && sym_hash->root.u.def.value > addr
1277 && sym_hash->root.u.def.value <= toaddr)
1279 sym_hash->root.u.def.value -= count;
1270 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
elf32-pru.c 1315 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1316 if ((sym_hash->root.type == bfd_link_hash_defined
1317 || sym_hash->root.type == bfd_link_hash_defweak)
1318 && sym_hash->root.u.def.section == sec)
1320 if (sym_hash->root.u.def.value > addr
1321 && sym_hash->root.u.def.value <= toaddr)
1322 sym_hash->root.u.def.value -= count;
1324 if (sym_hash->root.u.def.value <= addr
1325 && (sym_hash->root.u.def.value + sym_hash->size > addr)
1314 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
cofflink.c 278 struct coff_link_hash_entry **sym_hash; local
302 sym_hash = (struct coff_link_hash_entry **) bfd_zalloc (abfd, amt);
303 if (sym_hash == NULL)
305 obj_coff_sym_hashes (abfd) = sym_hash;
390 *sym_hash = coff_link_hash_lookup (coff_hash_table (info),
392 if (*sym_hash != NULL)
394 if (((*sym_hash)->coff_link_hash_flags
396 && (*sym_hash)->root.type != bfd_link_hash_undefined
397 && (*sym_hash)->root.type != bfd_link_hash_undefweak)
436 if (*sym_hash == NULL
1430 struct coff_link_hash_entry **sym_hash; local
    [all...]
elf32-cr16.c 1296 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1312 /* If the current symbol is identical to 'sym_hash', that means
1314 if (*cur_sym_hashes == sym_hash)
1322 if ((sym_hash->root.type == bfd_link_hash_defined
1323 || sym_hash->root.type == bfd_link_hash_defweak)
1324 && sym_hash->root.u.def.section == sec
1325 && sym_hash->root.u.def.value > addr
1326 && sym_hash->root.u.def.value < toaddr)
1327 sym_hash->root.u.def.value -= count;
elf32-h8300.c 1543 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1545 if ((sym_hash->root.type == bfd_link_hash_defined
1546 || sym_hash->root.type == bfd_link_hash_defweak)
1547 && sym_hash->root.u.def.section == sec
1548 && sym_hash->root.u.def.value > addr
1549 && sym_hash->root.u.def.value <= toaddr)
1550 sym_hash->root.u.def.value -= count;
1588 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1589 if ((sym_hash->root.type == bfd_link_hash_defined
1590 || sym_hash->root.type == bfd_link_hash_defweak
1542 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1587 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-ip2k.c 766 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
768 if ((sym_hash->root.type == bfd_link_hash_defined
769 || sym_hash->root.type == bfd_link_hash_defweak)
770 && sym_hash->root.u.def.section == sec)
772 if (addr <= sym_hash->root.u.def.value
773 && sym_hash->root.u.def.value < endaddr)
774 sym_hash->root.u.def.value += count;
elf32-m32c.c 2091 struct elf_link_hash_entry * sym_hash = * sym_hashes;
2093 if (sym_hash &&
2094 (sym_hash->root.type == bfd_link_hash_defined
2095 || sym_hash->root.type == bfd_link_hash_defweak)
2096 && sym_hash->root.u.def.section == sec)
2098 if (sym_hash->root.u.def.value > addr
2099 && sym_hash->root.u.def.value < toaddr)
2101 sym_hash->root.u.def.value -= count;
2103 if (sym_hash->root.u.def.value < addr
2104 && sym_hash->root.u.def.value + sym_hash->size > add
2085 struct elf_link_hash_entry * sym_hash = * sym_hashes; local
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
elf-m10200.c 519 struct elf_link_hash_entry *sym_hash = *sym_hashes;
520 if ((sym_hash->root.type == bfd_link_hash_defined
521 || sym_hash->root.type == bfd_link_hash_defweak)
522 && sym_hash->root.u.def.section == sec
523 && sym_hash->root.u.def.value > addr
524 && sym_hash->root.u.def.value < toaddr)
526 sym_hash->root.u.def.value -= count;
1254 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1255 if ((sym_hash->root.type == bfd_link_hash_defined
1256 || sym_hash->root.type == bfd_link_hash_defweak
518 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1253 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-crx.c 678 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
695 /* If the current symbol is identical to 'sym_hash', that means
697 if (*cur_sym_hashes == sym_hash)
705 if ((sym_hash->root.type == bfd_link_hash_defined
706 || sym_hash->root.type == bfd_link_hash_defweak)
707 && sym_hash->root.u.def.section == sec
708 && sym_hash->root.u.def.value > addr
709 && sym_hash->root.u.def.value < toaddr)
710 sym_hash->root.u.def.value -= count;
elf32-ft32.c 922 struct elf_link_hash_entry *sym_hash = *sym_hashes;
938 /* If the current symbol is identical to 'sym_hash', that means
940 if (*cur_sym_hashes == sym_hash)
948 if ((sym_hash->root.type == bfd_link_hash_defined
949 || sym_hash->root.type == bfd_link_hash_defweak)
950 && sym_hash->root.u.def.section == sec
951 && sym_hash->root.u.def.value > addr
952 && sym_hash->root.u.def.value < toaddr)
953 sym_hash->root.u.def.value -= count;
1040 struct elf_link_hash_entry *sym_hash = *sym_hashes
920 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1038 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-m68hc11.c 1272 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1273 if ((sym_hash->root.type == bfd_link_hash_defined
1274 || sym_hash->root.type == bfd_link_hash_defweak)
1275 && sym_hash->root.u.def.section == sec
1276 && sym_hash->root.u.def.value > addr
1277 && sym_hash->root.u.def.value <= toaddr)
1279 sym_hash->root.u.def.value -= count;
1270 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
elf32-pru.c 1314 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1315 if ((sym_hash->root.type == bfd_link_hash_defined
1316 || sym_hash->root.type == bfd_link_hash_defweak)
1317 && sym_hash->root.u.def.section == sec)
1319 if (sym_hash->root.u.def.value > addr
1320 && sym_hash->root.u.def.value <= toaddr)
1321 sym_hash->root.u.def.value -= count;
1323 if (sym_hash->root.u.def.value <= addr
1324 && (sym_hash->root.u.def.value + sym_hash->size > addr)
1313 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
  /src/external/gpl3/gdb/dist/bfd/
elf-m10200.c 519 struct elf_link_hash_entry *sym_hash = *sym_hashes;
520 if ((sym_hash->root.type == bfd_link_hash_defined
521 || sym_hash->root.type == bfd_link_hash_defweak)
522 && sym_hash->root.u.def.section == sec
523 && sym_hash->root.u.def.value > addr
524 && sym_hash->root.u.def.value < toaddr)
526 sym_hash->root.u.def.value -= count;
1254 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1255 if ((sym_hash->root.type == bfd_link_hash_defined
1256 || sym_hash->root.type == bfd_link_hash_defweak
518 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1253 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-crx.c 678 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
695 /* If the current symbol is identical to 'sym_hash', that means
697 if (*cur_sym_hashes == sym_hash)
705 if ((sym_hash->root.type == bfd_link_hash_defined
706 || sym_hash->root.type == bfd_link_hash_defweak)
707 && sym_hash->root.u.def.section == sec
708 && sym_hash->root.u.def.value > addr
709 && sym_hash->root.u.def.value < toaddr)
710 sym_hash->root.u.def.value -= count;
elf32-ft32.c 922 struct elf_link_hash_entry *sym_hash = *sym_hashes;
938 /* If the current symbol is identical to 'sym_hash', that means
940 if (*cur_sym_hashes == sym_hash)
948 if ((sym_hash->root.type == bfd_link_hash_defined
949 || sym_hash->root.type == bfd_link_hash_defweak)
950 && sym_hash->root.u.def.section == sec
951 && sym_hash->root.u.def.value > addr
952 && sym_hash->root.u.def.value < toaddr)
953 sym_hash->root.u.def.value -= count;
1040 struct elf_link_hash_entry *sym_hash = *sym_hashes
920 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1038 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-m68hc11.c 1272 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1273 if ((sym_hash->root.type == bfd_link_hash_defined
1274 || sym_hash->root.type == bfd_link_hash_defweak)
1275 && sym_hash->root.u.def.section == sec
1276 && sym_hash->root.u.def.value > addr
1277 && sym_hash->root.u.def.value <= toaddr)
1279 sym_hash->root.u.def.value -= count;
1270 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
elf32-pru.c 1314 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1315 if ((sym_hash->root.type == bfd_link_hash_defined
1316 || sym_hash->root.type == bfd_link_hash_defweak)
1317 && sym_hash->root.u.def.section == sec)
1319 if (sym_hash->root.u.def.value > addr
1320 && sym_hash->root.u.def.value <= toaddr)
1321 sym_hash->root.u.def.value -= count;
1323 if (sym_hash->root.u.def.value <= addr
1324 && (sym_hash->root.u.def.value + sym_hash->size > addr)
1313 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
elf-m10200.c 519 struct elf_link_hash_entry *sym_hash = *sym_hashes;
520 if ((sym_hash->root.type == bfd_link_hash_defined
521 || sym_hash->root.type == bfd_link_hash_defweak)
522 && sym_hash->root.u.def.section == sec
523 && sym_hash->root.u.def.value > addr
524 && sym_hash->root.u.def.value < toaddr)
526 sym_hash->root.u.def.value -= count;
1254 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1255 if ((sym_hash->root.type == bfd_link_hash_defined
1256 || sym_hash->root.type == bfd_link_hash_defweak
518 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1253 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-crx.c 678 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
695 /* If the current symbol is identical to 'sym_hash', that means
697 if (*cur_sym_hashes == sym_hash)
705 if ((sym_hash->root.type == bfd_link_hash_defined
706 || sym_hash->root.type == bfd_link_hash_defweak)
707 && sym_hash->root.u.def.section == sec
708 && sym_hash->root.u.def.value > addr
709 && sym_hash->root.u.def.value < toaddr)
710 sym_hash->root.u.def.value -= count;
elf32-ft32.c 922 struct elf_link_hash_entry *sym_hash = *sym_hashes;
938 /* If the current symbol is identical to 'sym_hash', that means
940 if (*cur_sym_hashes == sym_hash)
948 if ((sym_hash->root.type == bfd_link_hash_defined
949 || sym_hash->root.type == bfd_link_hash_defweak)
950 && sym_hash->root.u.def.section == sec
951 && sym_hash->root.u.def.value > addr
952 && sym_hash->root.u.def.value < toaddr)
953 sym_hash->root.u.def.value -= count;
1040 struct elf_link_hash_entry *sym_hash = *sym_hashes
920 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
1038 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]
elf32-m68hc11.c 1272 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1273 if ((sym_hash->root.type == bfd_link_hash_defined
1274 || sym_hash->root.type == bfd_link_hash_defweak)
1275 && sym_hash->root.u.def.section == sec
1276 && sym_hash->root.u.def.value > addr
1277 && sym_hash->root.u.def.value <= toaddr)
1279 sym_hash->root.u.def.value -= count;
1270 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
elf32-pru.c 1314 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1315 if ((sym_hash->root.type == bfd_link_hash_defined
1316 || sym_hash->root.type == bfd_link_hash_defweak)
1317 && sym_hash->root.u.def.section == sec)
1319 if (sym_hash->root.u.def.value > addr
1320 && sym_hash->root.u.def.value <= toaddr)
1321 sym_hash->root.u.def.value -= count;
1323 if (sym_hash->root.u.def.value <= addr
1324 && (sym_hash->root.u.def.value + sym_hash->size > addr)
1313 struct elf_link_hash_entry *sym_hash = *sym_hashes; local
    [all...]

Completed in 171 milliseconds

1 2 3 4 5 6