| /src/sys/arch/x86/include/ |
| bios32.h | 68 u_int16_t segment; member in struct:bios32_entry
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_platform_posix.cc | 138 MemoryMappedSegment segment; local 139 while (proc_maps.Next(&segment)) { 140 if (IsAppMem(segment.start)) continue; 141 if (segment.start >= HeapMemEnd() && segment.start < HeapEnd()) continue; 142 if (segment.protection == 0) // Zero page or mprotected. 144 if (segment.start >= VdsoBeg()) // vdso 147 segment.start, segment.end);
|
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_platform_posix.cpp | 100 MemoryMappedSegment segment; local 101 while (proc_maps.Next(&segment)) { 102 if (IsAppMem(segment.start)) continue; 103 if (segment.start >= HeapMemEnd() && segment.start < HeapEnd()) continue; 104 if (segment.protection == 0) // Zero page or mprotected. 106 if (segment.start >= VdsoBeg()) // vdso 109 segment.start, segment.end);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_platform_posix.cpp | 100 MemoryMappedSegment segment; local 101 while (proc_maps.Next(&segment)) { 102 if (IsAppMem(segment.start)) continue; 103 if (segment.start >= HeapMemEnd() && segment.start < HeapEnd()) continue; 104 if (segment.protection == 0) // Zero page or mprotected. 106 if (segment.start >= VdsoBeg()) // vdso 109 segment.start, segment.end);
|
| /src/usr.sbin/altq/libaltq/ |
| qop_hfsc.h | 34 struct segment { struct 35 LIST_ENTRY(segment) _next; 39 typedef LIST_HEAD(gen_sc, segment) gsc_head_t;
|
| /src/dist/pf/sbin/pfctl/ |
| pfctl.h | 103 struct segment { struct 104 LIST_ENTRY(segment) _next;
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| soc15.h | 41 u32 segment; member in struct:soc15_reg_golden
|
| /src/usr.sbin/emcfanctl/ |
| emcfanctlutil.c | 159 int segment; local 162 segment = reg / 64; 165 return(emcfan_chip_infos[iindex].register_void[segment] & ((uint64_t)1 << index));
|
| /src/sys/dev/acpi/ |
| acpi_pci.c | 62 * Regarding PCI Segment Groups (ACPI 4.0, p. 277): 65 * evaluates to an integer that describes the PCI Segment Group (see PCI 68 * "PCI Segment Group is purely a software concept managed by system 73 * "PCI Segment Group supports more than 256 buses in a system by allowing 74 * the reuse of the PCI bus numbers. Within each PCI Segment Group, the bus 76 * Segment Group are permitted to have the same bus number." 86 * segment since it is the PCI bus number." 198 * to be in the PCI segment group 0 (ACPI 4.0, p. 277). 199 * The segment group number is conveyed in the lower 230 * denote a PCI device on the bridge's downstream bus segment 493 u_int segment; local [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_symbolizer_report.cc | 132 MemoryMappedSegment segment; local 133 while (proc_maps.Next(&segment)) { 134 if (pc >= segment.start && pc < segment.end && !segment.IsExecutable())
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/clk_mgr/dcn10/ |
| amdgpu_rv1_clk_mgr_vbios_smu.c | 39 unsigned int segment[MAX_SEGMENT]; member in struct:IP_BASE_INSTANCE 68 (MP1_BASE.instance[0].segment[mm ## reg_name ## _BASE_IDX] + mm ## reg_name)
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_symbolizer_report.cpp | 140 MemoryMappedSegment segment; local 141 while (proc_maps.Next(&segment)) { 142 if (pc >= segment.start && pc < segment.end && !segment.IsExecutable())
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_symbolizer_report.cpp | 141 MemoryMappedSegment segment; local 142 while (proc_maps.Next(&segment)) { 143 if (pc >= segment.start && pc < segment.end && !segment.IsExecutable())
|
| /src/external/gpl3/gdb/dist/gdb/ |
| symfile.h | 76 /* A table listing the load segments in a symfile, and which segment 80 struct segment struct in struct:symfile_segment_data 82 segment (CORE_ADDR base, CORE_ADDR size) function in struct:symfile_segment_data::segment 86 /* The original base address the segment. */ 89 /* The memory size of the segment. */ 94 two, the text segment is the first one and the data segment 96 std::vector<segment> segments; 98 /* This is an array of entries recording which segment contains each BFD 99 section. SEGMENT_INFO[I] is S+1 if the I'th BFD section belongs to segment [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| symfile.h | 76 /* A table listing the load segments in a symfile, and which segment 80 struct segment struct in struct:symfile_segment_data 82 segment (CORE_ADDR base, CORE_ADDR size) function in struct:symfile_segment_data::segment 86 /* The original base address the segment. */ 89 /* The memory size of the segment. */ 94 two, the text segment is the first one and the data segment 96 std::vector<segment> segments; 98 /* This is an array of entries recording which segment contains each BFD 99 section. SEGMENT_INFO[I] is S+1 if the I'th BFD section belongs to segment [all...] |
| /src/sys/arch/i386/pci/ |
| pcibios.c | 390 uint16_t segment; member in struct:__anon1465 395 args.segment = GSEL(GDATA_SEL, SEL_KPL); 550 * some assumption about where the code segment register points. 567 * NetBSD does not have the code segment set up for this to work.
|
| /src/external/bsd/elftosb/dist/elftosb2/ |
| EncoreBootImageGenerator.cpp | 193 DataSource::Segment * segment = source->getSegmentAt(index); local 194 DataTarget::AddressRange range = target->getRangeForSegment(*source, *segment); 197 // handle a pattern segment as a special case to create a fill command 198 DataSource::PatternSegment * patternSegment = dynamic_cast<DataSource::PatternSegment*>(segment); 212 // get the data from the segment 214 segment->getData(0, rangeLength, data); 224 // Free the segment buffer.
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| sym-file-loader.c | 61 struct segment struct 66 struct segment *next; 73 struct segment *segments; 78 static int translate_offset (uint64_t file_offset, struct segment *seg, 99 /* Load a program segment. */ 101 static struct segment * 102 load (uint8_t *addr, Elf_External_Phdr *phdr, struct segment *tail_seg) 104 struct segment *seg = NULL; 125 seg = (struct segment *) malloc (sizeof (struct segment)); [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| sym-file-loader.c | 61 struct segment struct 66 struct segment *next; 73 struct segment *segments; 78 static int translate_offset (uint64_t file_offset, struct segment *seg, 99 /* Load a program segment. */ 101 static struct segment * 102 load (uint8_t *addr, Elf_External_Phdr *phdr, struct segment *tail_seg) 104 struct segment *seg = NULL; 125 seg = (struct segment *) malloc (sizeof (struct segment)); [all...] |
| /src/sys/arch/arm/acpi/ |
| acpi_pci_machdep.c | 364 u_int segment; local 366 segment = pci_get_segment(pc); 370 if (prtp->prt_segment == segment && prtp->prt_bus == bus) {
|
| /src/external/bsd/elftosb/dist/common/ |
| ELFSourceFile.cpp | 226 Log::log(Logger::DEBUG2, "creating segment for section %s\n", name.c_str()); 406 //! Not all sections will actually result in a new segment being created. Only 408 //! a new segment. Also, only sections whose size is non-zero will actually 409 //! create a segment. 414 //! should be filled. If not in the .secinfo table, no segment will be 426 // create the right segment subclass based on the section type 427 DataSource::Segment * segment = NULL; local 430 segment = new ProgBitsSegment(*this, m_elf, sectionIndex); 464 segment = new NoBitsSegment(*this, m_elf, sectionIndex) [all...] |
| /src/external/bsd/libevent/dist/ |
| evbuffer-internal.h | 191 #define EVBUFFER_FILESEGMENT 0x0001 /**< A chain used for a file segment */ 226 /** File segment for a file-segment chain. Lives at the end of an 229 struct evbuffer_file_segment *segment; member in struct:evbuffer_chain_file_segment 239 int refcnt; /**< Reference count for this file segment */ 242 /** What kind of file segment is this? */ 255 * segment. */ 257 /** Position of this segment within the file. */ 260 * this data segment begins. */ 262 /** The length of this segment. * [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| evbuffer-internal.h | 191 #define EVBUFFER_FILESEGMENT 0x0001 /**< A chain used for a file segment */ 226 /** File segment for a file-segment chain. Lives at the end of an 229 struct evbuffer_file_segment *segment; member in struct:evbuffer_chain_file_segment 239 int refcnt; /**< Reference count for this file segment */ 242 /** What kind of file segment is this? */ 255 * segment. */ 257 /** Position of this segment within the file. */ 260 * this data segment begins. */ 262 /** The length of this segment. * [all...] |
| /src/external/gpl3/binutils/dist/gas/config/ |
| tc-ppc.h | 202 /* Main segment of the section. */ member in struct:ppc_xcoff_section 203 segT segment; 205 /* Next subsegment to allocate within the segment. */
|
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| tc-ppc.h | 201 /* Main segment of the section. */ member in struct:ppc_xcoff_section 202 segT segment; 204 /* Next subsegment to allocate within the segment. */
|