Lines Matching refs:syms

720   } syms[2];  in simple_object_xcoff_write_to_file()  local
790 memset (&syms[0], 0, sizeof (syms)); in simple_object_xcoff_write_to_file()
792 strcpy ((char *)&syms[0].sym.u.xcoff32.n.n_name[0], ".file"); in simple_object_xcoff_write_to_file()
793 set_16 (&syms[0].sym.n_scnum[0], N_DEBUG); in simple_object_xcoff_write_to_file()
794 set_16 (&syms[0].sym.n_type[0], IMAGE_SYM_TYPE); in simple_object_xcoff_write_to_file()
795 syms[0].sym.n_sclass[0] = C_FILE; in simple_object_xcoff_write_to_file()
796 syms[0].sym.n_numaux[0] = 1; in simple_object_xcoff_write_to_file()
801 memcpy (&syms[1].aux.x_file.x_fname[0], source_filename, sflen); in simple_object_xcoff_write_to_file()
804 set_32 (&syms[1].aux.x_file._x.x_offset[0], name_offset); in simple_object_xcoff_write_to_file()
813 (const unsigned char *) &syms[0], in simple_object_xcoff_write_to_file()
814 sizeof (syms), &errmsg, err)) in simple_object_xcoff_write_to_file()
825 secsym_offset = symtab_offset + sizeof (syms); in simple_object_xcoff_write_to_file()
826 memset (&syms[0], 0, sizeof (syms)); in simple_object_xcoff_write_to_file()
827 set_16 (&syms[0].sym.n_type[0], IMAGE_SYM_TYPE); in simple_object_xcoff_write_to_file()
828 syms[0].sym.n_sclass[0] = C_STAT; in simple_object_xcoff_write_to_file()
829 syms[0].sym.n_numaux[0] = 1; in simple_object_xcoff_write_to_file()
839 set_16 (&syms[0].sym.n_scnum[0], secnum++); in simple_object_xcoff_write_to_file()
843 set_32 (&syms[1].aux.x_scn.x_scnlen[0], scnsize); in simple_object_xcoff_write_to_file()
846 set_32 (&syms[0].sym.u.xcoff32.n.n.n_zeroes[0], 0); in simple_object_xcoff_write_to_file()
847 set_32 (&syms[0].sym.u.xcoff32.n.n.n_offset[0], name_offset); in simple_object_xcoff_write_to_file()
857 memcpy (&syms[0].sym.u.xcoff32.n.n_name[0], section->name, in simple_object_xcoff_write_to_file()
859 memset (&syms[0].sym.u.xcoff32.n.n_name[strlen (section->name)], 0, in simple_object_xcoff_write_to_file()
864 (const unsigned char *) &syms[0], in simple_object_xcoff_write_to_file()
865 sizeof (syms), &errmsg, err)) in simple_object_xcoff_write_to_file()
867 secsym_offset += sizeof (syms); in simple_object_xcoff_write_to_file()