Lines Matching refs:syms
623 } syms[2]; in simple_object_coff_write_to_file() local
697 memset (&syms[0], 0, sizeof (syms)); in simple_object_coff_write_to_file()
698 strcpy ((char *)&syms[0].sym.e.e_name[0], ".file"); in simple_object_coff_write_to_file()
699 set_16 (&syms[0].sym.e_scnum[0], IMAGE_SYM_DEBUG); in simple_object_coff_write_to_file()
700 set_16 (&syms[0].sym.e_type[0], IMAGE_SYM_TYPE); in simple_object_coff_write_to_file()
701 syms[0].sym.e_sclass[0] = IMAGE_SYM_CLASS_FILE; in simple_object_coff_write_to_file()
702 syms[0].sym.e_numaux[0] = 1; in simple_object_coff_write_to_file()
707 memcpy (&syms[1].aux.x_file.x_fname[0], source_filename, sflen); in simple_object_coff_write_to_file()
710 set_32 (&syms[1].aux.x_file.x_n.x_offset[0], name_offset); in simple_object_coff_write_to_file()
719 (const unsigned char *) &syms[0], in simple_object_coff_write_to_file()
720 sizeof (syms), &errmsg, err)) in simple_object_coff_write_to_file()
731 secsym_offset = symtab_offset + sizeof (syms); in simple_object_coff_write_to_file()
732 memset (&syms[0], 0, sizeof (syms)); in simple_object_coff_write_to_file()
733 set_16 (&syms[0].sym.e_type[0], IMAGE_SYM_TYPE); in simple_object_coff_write_to_file()
734 syms[0].sym.e_sclass[0] = IMAGE_SYM_CLASS_STATIC; in simple_object_coff_write_to_file()
735 syms[0].sym.e_numaux[0] = 1; in simple_object_coff_write_to_file()
745 set_16 (&syms[0].sym.e_scnum[0], secnum++); in simple_object_coff_write_to_file()
749 set_32 (&syms[1].aux.x_scn.x_scnlen[0], scnsize); in simple_object_coff_write_to_file()
752 set_32 (&syms[0].sym.e.e.e_zeroes[0], 0); in simple_object_coff_write_to_file()
753 set_32 (&syms[0].sym.e.e.e_offset[0], name_offset); in simple_object_coff_write_to_file()
763 memcpy (&syms[0].sym.e.e_name[0], section->name, in simple_object_coff_write_to_file()
765 memset (&syms[0].sym.e.e_name[strlen (section->name)], 0, in simple_object_coff_write_to_file()
770 (const unsigned char *) &syms[0], in simple_object_coff_write_to_file()
771 sizeof (syms), &errmsg, err)) in simple_object_coff_write_to_file()
773 secsym_offset += sizeof (syms); in simple_object_coff_write_to_file()