HomeSort by: relevance | last modified time | path
    Searched refs:segname (Results 1 - 25 of 61) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/darwin/mach/
getsect.d 58 * segname = the name of the segment
66 const scope char* segname,
89 * segname = the name of the segment
98 const scope char* segname,
127 * segname = the name of the segment
133 const scope char* segname,
158 * segname = the name of the segment
167 const scope char* segname,
187 * segname = the name of the segment
192 const scope char* segname
    [all...]
  /src/external/gpl3/binutils/dist/gas/
subsegs.c 180 subseg_get (const char *segname, int force_new)
187 && (now_seg_name == segname
188 || !strcmp (now_seg_name, segname)))
192 secptr = bfd_make_section_old_way (stdoutput, segname);
194 secptr = bfd_make_section_anyway (stdoutput, segname);
205 subseg_new (const char *segname, subsegT subseg)
209 secptr = subseg_get (segname, 0);
217 subseg_force_new (const char *segname, subsegT subseg)
221 secptr = subseg_get (segname, 1);
listing.c 310 const char *segname; local
312 segname = segment_name (now_seg);
313 if (startswith (segname, ".debug")
314 || startswith (segname, ".line"))
424 const char *segname; local
426 segname = segment_name (now_seg);
427 if (startswith (segname, ".debug")
428 || startswith (segname, ".line"))
  /src/external/gpl3/binutils.old/dist/gas/
subsegs.c 180 subseg_get (const char *segname, int force_new)
187 && (now_seg_name == segname
188 || !strcmp (now_seg_name, segname)))
192 secptr = bfd_make_section_old_way (stdoutput, segname);
194 secptr = bfd_make_section_anyway (stdoutput, segname);
205 subseg_new (const char *segname, subsegT subseg)
209 secptr = subseg_get (segname, 0);
217 subseg_force_new (const char *segname, subsegT subseg)
221 secptr = subseg_get (segname, 1);
listing.c 310 const char *segname; local
312 segname = segment_name (now_seg);
313 if (startswith (segname, ".debug")
314 || startswith (segname, ".line"))
424 const char *segname; local
426 segname = segment_name (now_seg);
427 if (startswith (segname, ".debug")
428 || startswith (segname, ".line"))
  /src/external/gpl3/binutils/dist/include/mach-o/
external.h 44 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_32_external
62 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_64_external
85 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_32_external
99 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_64_external
  /src/external/gpl3/binutils.old/dist/include/mach-o/
external.h 44 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_32_external
62 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_64_external
85 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_32_external
99 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_64_external
  /src/external/gpl3/gdb/dist/include/mach-o/
external.h 44 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_32_external
62 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_64_external
85 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_32_external
99 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_64_external
  /src/external/gpl3/gdb.old/dist/include/mach-o/
external.h 44 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_32_external
62 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_64_external
85 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_32_external
99 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_64_external
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
Object.cpp 137 StringRef SegName, uint64_t SegVMAddr, uint64_t SegVMSize) {
138 assert(SegName.size() <= sizeof(Seg.segname) && "too long segment name");
141 strncpy(Seg.segname, SegName.data(), SegName.size());
150 LoadCommand &Object::addSegment(StringRef SegName, uint64_t SegVMSize) {
155 MachO::LC_SEGMENT_64, SegName, SegVMAddr, SegVMSize);
158 MachO::LC_SEGMENT, SegName, SegVMAddr, SegVMSize);
165 static StringRef extractSegmentName(const char *SegName) {
    [all...]
MachOLayoutBuilder.cpp 121 StringRef Segname;
128 Segname = StringRef(MLC.segment_command_data.segname,
129 strnlen(MLC.segment_command_data.segname,
130 sizeof(MLC.segment_command_data.segname)));
135 Segname = StringRef(MLC.segment_command_64_data.segname,
136 strnlen(MLC.segment_command_64_data.segname,
137 sizeof(MLC.segment_command_64_data.segname)));
143 if (Segname == "__LINKEDIT")
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
mach-o.c 299 bfd_mach_o_section_data_for_mach_sect (bfd *abfd, const char *segname,
308 for (seg = bed->segsec_names_xlat; seg->segname; seg++)
309 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
316 for (seg = segsec_names_xlat; seg->segname; seg++)
317 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
332 const char **segname)
337 *segname = NULL;
344 for (seg = bed->segsec_names_xlat; seg->segname; seg++
441 const char *segname; local
3309 const char *segname = mdata->sections[i]->segname; local
    [all...]
mach-o.h 66 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_section
94 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_segment_command
774 const char *segname; member in struct:mach_o_segment_name_xlat
  /src/external/gpl3/binutils.old/dist/bfd/
mach-o.c 299 bfd_mach_o_section_data_for_mach_sect (bfd *abfd, const char *segname,
308 for (seg = bed->segsec_names_xlat; seg->segname; seg++)
309 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
316 for (seg = segsec_names_xlat; seg->segname; seg++)
317 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
332 const char **segname)
337 *segname = NULL;
344 for (seg = bed->segsec_names_xlat; seg->segname; seg++
441 const char *segname; local
3308 const char *segname = mdata->sections[i]->segname; local
    [all...]
mach-o.h 66 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_section
94 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_segment_command
774 const char *segname; member in struct:mach_o_segment_name_xlat
  /src/external/gpl3/gdb/dist/bfd/
mach-o.c 299 bfd_mach_o_section_data_for_mach_sect (bfd *abfd, const char *segname,
308 for (seg = bed->segsec_names_xlat; seg->segname; seg++)
309 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
316 for (seg = segsec_names_xlat; seg->segname; seg++)
317 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
332 const char **segname)
337 *segname = NULL;
344 for (seg = bed->segsec_names_xlat; seg->segname; seg++
441 const char *segname; local
3306 const char *segname = mdata->sections[i]->segname; local
    [all...]
mach-o.h 66 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_section
94 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_segment_command
773 const char *segname; member in struct:mach_o_segment_name_xlat
  /src/external/gpl3/gdb.old/dist/bfd/
mach-o.c 299 bfd_mach_o_section_data_for_mach_sect (bfd *abfd, const char *segname,
308 for (seg = bed->segsec_names_xlat; seg->segname; seg++)
309 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
316 for (seg = segsec_names_xlat; seg->segname; seg++)
317 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
332 const char **segname)
337 *segname = NULL;
344 for (seg = bed->segsec_names_xlat; seg->segname; seg++
441 const char *segname; local
3306 const char *segname = mdata->sections[i]->segname; local
    [all...]
mach-o.h 66 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_section
94 char segname[BFD_MACH_O_SEGNAME_SIZE + 1]; member in struct:bfd_mach_o_segment_command
773 const char *segname; member in struct:mach_o_segment_name_xlat
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachOUtils.cpp 125 memcpy(Seg64.segname, Seg.segname, sizeof(Seg.segname));
259 if (StringRef("__DWARF") == Segment.segname)
262 if (StringRef("__TEXT") == Segment.segname && EHFrameSize > 0) {
265 } else if (StringRef("__LINKEDIT") == Segment.segname) {
340 if (StringRef("__LINKEDIT") == Segment.segname)
459 if (StringRef("__DWARF") == Segment.segname)
  /src/external/gpl3/binutils/dist/gas/config/
obj-macho.c 168 obj_mach_o_make_or_get_sect (char * segname, char * sectname,
182 xlat = bfd_mach_o_section_data_for_mach_sect (stdoutput, segname, sectname);
196 segname, sectname);
209 name = concat (segname, ".", sectname, (char *) NULL);
253 strncpy (msect->segname, segname, BFD_MACH_O_SEGNAME_SIZE);
254 msect->segname[BFD_MACH_O_SEGNAME_SIZE] = 0;
306 char segname[17]; local
314 if (! obj_mach_o_get_section_names (segname, sectname, 17, 17))
421 new_seg = obj_mach_o_make_or_get_sect (segname, sectname, specified_mask
441 char segname[17]; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
obj-macho.c 168 obj_mach_o_make_or_get_sect (char * segname, char * sectname,
182 xlat = bfd_mach_o_section_data_for_mach_sect (stdoutput, segname, sectname);
196 segname, sectname);
209 name = concat (segname, ".", sectname, (char *) NULL);
253 strncpy (msect->segname, segname, BFD_MACH_O_SEGNAME_SIZE);
254 msect->segname[BFD_MACH_O_SEGNAME_SIZE] = 0;
306 char segname[17]; local
314 if (! obj_mach_o_get_section_names (segname, sectname, 17, 17))
421 new_seg = obj_mach_o_make_or_get_sect (segname, sectname, specified_mask
441 char segname[17]; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-size/
llvm-size.cpp 231 outs() << "Segment " << Seg.segname << ": "
242 outs() << "\tSection (" << format("%.16s", &Sec.segname) << ", "
258 outs() << "Segment " << Seg.segname << ": "
269 outs() << "\tSection (" << format("%.16s", &Sec.segname) << ", "
303 StringRef SegmentName = StringRef(Sec.segname);
314 StringRef SegmentName = StringRef(Seg.segname);
329 StringRef SegmentName = StringRef(Sec.segname);
340 StringRef SegmentName = StringRef(Seg.segname);
  /src/external/gpl3/binutils/dist/libiberty/
simple-object-mach-o.c 102 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_32
119 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_64
135 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_32
152 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_64
447 segname_offset = offsetof (struct mach_o_section_32, segname);
457 segname_offset = offsetof (struct mach_o_section_64, segname);
955 strncpy ((char *) hdr + offsetof (struct mach_o_section_32, segname),
980 strncpy ((char *) hdr + offsetof (struct mach_o_section_64, segname),
  /src/external/gpl3/binutils.old/dist/libiberty/
simple-object-mach-o.c 102 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_32
119 unsigned char segname[16]; /* Name of this segment. */ member in struct:mach_o_segment_command_64
135 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_32
152 unsigned char segname[16]; /* Segment that the section belongs to. */ member in struct:mach_o_section_64
447 segname_offset = offsetof (struct mach_o_section_32, segname);
457 segname_offset = offsetof (struct mach_o_section_64, segname);
966 strncpy ((char *) hdr + offsetof (struct mach_o_section_32, segname),
991 strncpy ((char *) hdr + offsetof (struct mach_o_section_64, segname),

Completed in 87 milliseconds

1 2 3