Home | History | Annotate | Download | only in config

Lines Matching full:i_note

1696   Elf_Internal_Note i_note;
1726 i_note.namesz = len;
1727 i_note.descsz = 0; /* No description. */
1728 i_note.type = NT_VERSION;
1730 md_number_to_chars (p, i_note.namesz, sizeof (e_note.namesz));
1732 md_number_to_chars (p, i_note.descsz, sizeof (e_note.descsz));
1734 md_number_to_chars (p, i_note.type, sizeof (e_note.type));
2550 Elf_Internal_Note i_note;
2564 i_note.namesz = 4;
2565 i_note.descsz = 12; /* 12 descriptive bytes */
2566 i_note.type = NT_VERSION; /* Contains a version string */
2568 p = frag_more (sizeof (i_note.namesz));
2569 md_number_to_chars (p, i_note.namesz, 4);
2571 p = frag_more (sizeof (i_note.descsz));
2572 md_number_to_chars (p, i_note.descsz, 4);
2574 p = frag_more (sizeof (i_note.type));
2575 md_number_to_chars (p, i_note.type, 4);