Home | History | Annotate | Download | only in bfd

Lines Matching defs:symhdr

1041   HDRR *symhdr;
1045 symhdr = &debug->symbolic_header;
1052 ret = symhdr->issMax;
1053 symhdr->issMax += len + 1;
1065 sh->val = symhdr->issMax;
1066 symhdr->issMax += len + 1;
1212 HDRR * const symhdr = &debug->symbolic_header;
1259 (*set_index) (sym_ptr, (bfd_size_type) symhdr->iextMax);
1281 HDRR * const symhdr = &debug->symbolic_header;
1287 < symhdr->issExtMax + namelen + 1)
1291 symhdr->issExtMax + namelen + 1))
1296 < (symhdr->iextMax + 1) * external_ext_size)
1302 (symhdr->iextMax + 1) * (size_t) external_ext_size))
1308 esym->asym.iss = symhdr->issExtMax;
1312 + symhdr->iextMax * swap->external_ext_size));
1314 ++symhdr->iextMax;
1316 strcpy (debug->ssext + symhdr->issExtMax, name);
1317 symhdr->issExtMax += namelen + 1;
1329 HDRR * const symhdr = &debug->symbolic_header;
1338 add = debug_align - (symhdr->cbLine & (debug_align - 1));
1342 memset ((debug->line + symhdr->cbLine), 0, add);
1343 symhdr->cbLine += add;
1346 add = debug_align - (symhdr->issMax & (debug_align - 1));
1350 memset ((debug->ss + symhdr->issMax), 0, add);
1351 symhdr->issMax += add;
1354 add = debug_align - (symhdr->issExtMax & (debug_align - 1));
1358 memset ((debug->ssext + symhdr->issExtMax), 0, add);
1359 symhdr->issExtMax += add;
1362 add = aux_align - (symhdr->iauxMax & (aux_align - 1));
1366 memset ((debug->external_aux + symhdr->iauxMax), 0,
1368 symhdr->iauxMax += add;
1371 add = rfd_align - (symhdr->crfd & (rfd_align - 1));
1376 + symhdr->crfd * swap->external_rfd_size),
1378 symhdr->crfd += add;
1424 HDRR * const symhdr = &debug->symbolic_header;
1435 symhdr->magic = swap->sym_magic;
1439 if (symhdr->count == 0) \
1440 symhdr->offset = 0; \
1443 symhdr->offset = where; \
1444 where += symhdr->count * size; \
1464 (*swap->swap_hdr_out) (abfd, symhdr, buff);
1488 HDRR * const symhdr = &debug->symbolic_header;
1494 BFD_ASSERT (symhdr->offset == 0 \
1495 || (bfd_vma) bfd_tell (abfd) == symhdr->offset); \
1496 if (symhdr->count != 0 \
1497 && bfd_write (debug->ptr, size * symhdr->count, \
1498 abfd) != size * symhdr->count) \