Lines Matching defs:symhdr

1080   HDRR *symhdr;
1084 symhdr = &debug->symbolic_header;
1091 ret = symhdr->issMax;
1092 symhdr->issMax += len + 1;
1104 sh->val = symhdr->issMax;
1105 symhdr->issMax += len + 1;
1255 HDRR * const symhdr = &debug->symbolic_header;
1302 (*set_index) (sym_ptr, (bfd_size_type) symhdr->iextMax);
1325 HDRR * const symhdr = &debug->symbolic_header;
1331 < symhdr->issExtMax + namelen + 1)
1335 symhdr->issExtMax + namelen + 1))
1340 < (symhdr->iextMax + 1) * external_ext_size)
1346 (symhdr->iextMax + 1) * (size_t) external_ext_size))
1352 esym->asym.iss = symhdr->issExtMax;
1356 + symhdr->iextMax * swap->external_ext_size));
1358 ++symhdr->iextMax;
1360 strcpy (debug->ssext + symhdr->issExtMax, name);
1361 symhdr->issExtMax += namelen + 1;
1374 HDRR * const symhdr = &debug->symbolic_header;
1383 add = debug_align - (symhdr->cbLine & (debug_align - 1));
1387 memset ((PTR) (debug->line + symhdr->cbLine), 0, add);
1388 symhdr->cbLine += add;
1391 add = debug_align - (symhdr->issMax & (debug_align - 1));
1395 memset ((PTR) (debug->ss + symhdr->issMax), 0, add);
1396 symhdr->issMax += add;
1399 add = debug_align - (symhdr->issExtMax & (debug_align - 1));
1403 memset ((PTR) (debug->ssext + symhdr->issExtMax), 0, add);
1404 symhdr->issExtMax += add;
1407 add = aux_align - (symhdr->iauxMax & (aux_align - 1));
1411 memset ((PTR) (debug->external_aux + symhdr->iauxMax), 0,
1413 symhdr->iauxMax += add;
1416 add = rfd_align - (symhdr->crfd & (rfd_align - 1));
1421 + symhdr->crfd * swap->external_rfd_size),
1423 symhdr->crfd += add;
1471 HDRR * const symhdr = &debug->symbolic_header;
1482 symhdr->magic = swap->sym_magic;
1486 if (symhdr->count == 0) \
1487 symhdr->offset = 0; \
1490 symhdr->offset = where; \
1491 where += symhdr->count * size; \
1511 (*swap->swap_hdr_out) (abfd, symhdr, buff);
1538 HDRR * const symhdr = &debug->symbolic_header;
1544 BFD_ASSERT (symhdr->offset == 0 \
1545 || (bfd_vma) bfd_tell (abfd) == symhdr->offset); \
1546 if (bfd_bwrite ((PTR) debug->ptr, (bfd_size_type) size * symhdr->count, abfd)\
1547 != size * symhdr->count) \