HomeSort by relevance Sort by last modified time
    Searched defs:asect (Results 1 - 11 of 11) sorted by null

  /toolchain/binutils/binutils-2.25/bfd/
lynx-core.c 67 asection *asect; local
76 asect = bfd_make_section_with_flags (abfd, newname, flags);
77 if (!asect)
80 asect->size = size;
81 asect->vma = vma;
82 asect->filepos = filepos;
83 asect->alignment_power = 2;
85 return asect;
netbsd-core.c 60 asection *asect; local
129 asect = bfd_make_section_anyway_with_flags (abfd, sname, flags);
130 if (asect == NULL)
133 asect->size = coreseg.c_size;
134 asect->vma = coreseg.c_addr;
135 asect->filepos = offset;
136 asect->alignment_power = 2;
158 asect->size = wcookie_offset;
162 asect = bfd_make_section_anyway_with_flags (abfd, ".wcookie",
164 if (asect == NULL
    [all...]
osf-core.c 59 asection *asect; local
61 asect = bfd_make_section_anyway_with_flags (abfd, name, flags);
62 if (!asect)
65 asect->size = size;
66 asect->vma = vma;
67 asect->filepos = filepos;
68 asect->alignment_power = 8;
70 return asect;
cisco-core.c 95 sec_ptr asect;
246 asect = bfd_make_section_anyway_with_flags (abfd, ".data", flags);
247 if (asect == NULL)
250 asect->size = statbuf.st_size;
251 asect->vma = rambase;
252 asect->filepos = 0;
258 asect = bfd_make_section_anyway_with_flags (abfd, ".crash", flags);
259 if (asect == NULL)
261 asect->vma = 0;
262 asect->filepos = crashinfo_offset
93 sec_ptr asect; local
    [all...]
hppabsd-core.c 80 asection *asect; local
82 asect = bfd_make_section_with_flags (abfd, name, flags);
83 if (!asect)
86 asect->size = size;
87 asect->filepos = offset;
88 asect->alignment_power = alignment_power;
90 return asect;
hpux-core.c 119 asection *asect; local
128 asect = bfd_make_section_anyway_with_flags (abfd, newname, flags);
129 if (!asect)
132 asect->size = size;
133 asect->vma = vma;
134 asect->filepos = bfd_tell (abfd);
135 asect->alignment_power = alignment_power;
137 return asect;
317 asection *asect = bfd_sections_find_if (abfd, thread_section_p, NULL); local
320 if (asect != NULL
    [all...]
irix-core.c 155 asection *asect; local
157 asect = bfd_make_section_anyway_with_flags (abfd, name, flags);
158 if (!asect)
161 asect->size = size;
162 asect->vma = vma;
163 asect->filepos = filepos;
164 asect->alignment_power = 4;
166 return asect;
sco5-core.c 57 asection *asect; local
59 asect = bfd_make_section_anyway_with_flags (abfd, name, flags);
60 if (!asect)
62 asect->size = size;
63 asect->vma = vma;
64 asect->filepos = filepos;
65 asect->alignment_power = 2;
67 return asect;
rs6000-core.c 303 asection *asect; local
305 asect = bfd_make_section_anyway_with_flags (abfd, name, flags);
306 if (!asect)
309 asect->size = size;
310 asect->vma = vma;
311 asect->filepos = filepos;
312 asect->alignment_power = 8;
314 return asect;
mach-o.c 5710 asection *asect; local
    [all...]
elf.c 3403 asection *asect; local
    [all...]

Completed in 1465 milliseconds