Searched refs:s_so (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | archive.c | 163 if (ecp->s_so == NULL) { in add_to_ar_sym_table() 164 if ((ecp->s_so = malloc(_INIT_SYMOFF_CAP)) == NULL) in add_to_ar_sym_table() 179 ecp->s_so = realloc(ecp->s_so, ecp->s_so_cap); in add_to_ar_sym_table() 180 if (ecp->s_so == NULL) in add_to_ar_sym_table() 183 ecp->s_so[ecp->s_cnt] = ecp->rela_off; in add_to_ar_sym_table() 238 *(ecp->s_so + i) = htobe32(*(ecp->s_so + i) + in sync_ar() 477 ac_write_data(a, ecp->s_so, sizeof(uint32_t) * ecp->s_cnt); in ac_write_objs() 524 free(ecp->s_so); in ac_write_cleanup() 527 ecp->s_so = NULL; in ac_write_cleanup()
|
H A D | elfcopy.h | 262 uint32_t *s_so; /* symbol offset table. */ member
|
/freebsd/contrib/elftoolchain/ar/ |
H A D | write.c | 551 free(bsdar->s_so); in write_cleanup() 554 bsdar->s_so = NULL; in write_cleanup() 609 bsdar->s_so[i] = htobe32(bsdar->s_so[i]); in write_svr4_symtab_entry() 613 write_data(bsdar, a, bsdar->s_so, sizeof(uint32_t) * in write_svr4_symtab_entry() 640 br_off = (long) bsdar->s_so[i]; in write_bsd_symtab_entry() 734 bsdar->s_so[i] = bsdar->s_so[i] + pm_sz; in write_objs() 948 if (bsdar->s_so == NULL) { in add_to_ar_sym_table() 949 if ((bsdar->s_so = malloc(_INIT_SYMOFF_CAP)) == in add_to_ar_sym_table() 965 bsdar->s_so = realloc(bsdar->s_so, bsdar->s_so_cap); in add_to_ar_sym_table() 966 if (bsdar->s_so == NULL) in add_to_ar_sym_table() [all …]
|
H A D | ar.h | 126 uint32_t *s_so; /* symbol offset table. */ member
|
/freebsd/usr.bin/ar/ |
H A D | write.c | 521 free(bsdar->s_so); in write_cleanup() 524 bsdar->s_so = NULL; in write_cleanup() 640 bsdar->s_so[i] = in write_objs() 641 htobe64(bsdar->s_so[i] + pm_sz); in write_objs() 648 ((uint32_t *)(bsdar->s_so))[i] = in write_objs() 649 htobe32(bsdar->s_so[i] + pm_sz); in write_objs() 686 write_data(bsdar, a, bsdar->s_so, w_sz * bsdar->s_cnt); in write_objs() 875 if (bsdar->s_so == NULL) { in add_to_ar_sym_table() 876 if ((bsdar->s_so = malloc(_INIT_SYMOFF_CAP)) == in add_to_ar_sym_table() 892 bsdar->s_so = realloc(bsdar->s_so, bsdar->s_so_cap); in add_to_ar_sym_table() [all …]
|
H A D | ar.h | 102 uint64_t *s_so; /* symbol offset table. */ member
|