Lines Matching refs:symbols
45 /* This structure is used to hold the symbols, as well as the current
46 location within the symbols. */
50 /* The symbols. */
52 /* The number of symbols. */
112 parse_coff_type (bfd *abfd, struct coff_symbols *symbols,
127 type = parse_coff_type (abfd, symbols, types, coff_symno, newtype,
133 type = parse_coff_type (abfd, symbols, types, coff_symno, newtype,
161 type = parse_coff_type (abfd, symbols, types, coff_symno, newtype,
164 parse_coff_base_type (abfd, symbols,
202 return parse_coff_base_type (abfd, symbols, types, coff_symno, ntype,
209 parse_coff_base_type (bfd *abfd, struct coff_symbols *symbols,
289 ret = parse_coff_struct_type (abfd, symbols, types, ntype, pauxent,
297 ret = parse_coff_struct_type (abfd, symbols, types, ntype, pauxent,
306 ret = parse_coff_enum_type (abfd, symbols, types, pauxent, dhandle);
322 parse_coff_struct_type (bfd *abfd, struct coff_symbols *symbols,
340 && symbols->coff_symno < symend
341 && symbols->symno < symbols->symcount)
350 sym = symbols->syms[symbols->symno];
360 this_coff_symno = symbols->coff_symno;
362 ++symbols->symno;
363 symbols->coff_symno += 1 + syment.n_numaux;
403 ftype = parse_coff_type (abfd, symbols, types, this_coff_symno,
438 parse_coff_enum_type (bfd *abfd, struct coff_symbols *symbols,
458 && symbols->coff_symno < symend
459 && symbols->symno < symbols->symcount)
464 sym = symbols->syms[symbols->symno];
475 ++symbols->symno;
476 symbols->coff_symno += 1 + syment.n_numaux;
617 /* This is the main routine. It looks through all the symbols and
623 struct coff_symbols symbols;
634 symbols.syms = syms;
635 symbols.symcount = symcount;
636 symbols.symno = 0;
637 symbols.coff_symno = 0;
649 while (symbols.symno < symcount)
658 sym = syms[symbols.symno];
669 this_coff_symno = symbols.coff_symno;
671 ++symbols.symno;
672 symbols.coff_symno += 1 + syment.n_numaux;
716 /* Ignore static symbols with a type of T_NULL. These
735 type = parse_coff_type (abfd, &symbols, &types, this_coff_symno,
754 type = parse_coff_type (abfd, &symbols, &types, this_coff_symno,
827 type = parse_coff_type (abfd, &symbols, &types, this_coff_symno,