Searched refs:segments (Results 1 - 25 of 110) sorted by relevance

12345

/freebsd-11-stable/sys/pc98/include/
H A Dsegments.h6 #include <i386/segments.h>
/freebsd-11-stable/tools/regression/netinet6/inet6_rth/
H A DMakefile3 PROG= inet6_rth-segments
4 SRCS= test_subr.c inet6_rth-segments.c
/freebsd-11-stable/lib/libc/i386/sys/
H A Di386_get_ldt.c33 #include <machine/segments.h>
H A Di386_set_ldt.c33 #include <machine/segments.h>
/freebsd-11-stable/sys/i386/include/
H A Dpcb_ext.h37 #include <machine/segments.h>
H A Dsegments.h33 * from: @(#)segments.h 7.1 (Berkeley) 5/9/91
45 #include <x86/segments.h>
66 * region descriptors, used to load gdt/idt tables before segments yet exist.
H A Dproc.h36 #include <machine/segments.h>
H A Dcpu.h44 #include <machine/segments.h>
H A Dpcb.h43 #include <machine/segments.h>
/freebsd-11-stable/lib/libc/net/
H A Drthdr.c275 inet6_rth_space(int type, int segments) argument
279 if ((segments >= 0) && (segments <= 127))
280 return (((segments * 2) + 1) << 3);
288 inet6_rth_init(void *bp, socklen_t bp_len, int type, int segments) argument
296 if (bp_len < inet6_rth_space(IPV6_RTHDR_TYPE_0, segments))
299 if ((segments < 0) || (segments > 127))
304 rth0->ip6r0_len = segments * 2;
326 /* Don't exceed the number of stated segments */
345 int i, segments; local
[all...]
/freebsd-11-stable/sys/x86/iommu/
H A Dbusdma_dmar.h43 bus_dma_segment_t *segments; member in struct:bus_dma_tag_dmar
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveInterval.cpp93 if (I == segments().end()) {
116 segments().insert(I, Segment(Def, Def.getDeadSlot(), VNI));
121 if (segments().empty())
125 if (I == segments().begin())
137 if (segments().empty())
141 if (I == segments().begin())
156 /// merge and eliminate all segments that this will overlap
159 assert(I != segments().end() && "Not a valid segment!");
165 for (; MergeTo != segments().end() && NewEnd >= MergeTo->end; ++MergeTo)
172 // have the same value number, merge the two segments int
271 CollectionT &segments() { return impl().segmentsColl(); } function in class:__anon1736::CalcLiveRangeUtilBase
[all...]
H A DLiveRangeUtils.h21 /// corresponding segments of a master live range \p LR to a list of newly
28 // Move segments to new intervals.
36 SplitLRs[eq-1]->segments.push_back(*I);
40 LR.segments.erase(J, E);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-dma-engine.c384 int segments = 0; local
391 buffers[segments].u64 = 0;
392 buffers[segments].internal.size = chunk;
393 buffers[segments].internal.addr = address;
396 segments++;
398 return segments;
411 * will be segments + (segments-1)/4 + 1.
416 int segments = 0; local
427 segments
[all...]
/freebsd-11-stable/sys/amd64/include/
H A Dcpu.h44 #include <machine/segments.h>
H A Dproc.h37 #include <machine/segments.h>
H A Dsegments.h33 * from: @(#)segments.h 7.1 (Berkeley) 5/9/91
44 #include <x86/segments.h>
82 * region descriptors, used to load gdt/idt tables before segments yet exist.
/freebsd-11-stable/contrib/gdb/gdb/
H A Dada-lex.l264 int token_type, segments, k;
280 segments = name_lookup (ada_mangle (yylval.ssym.stoken.ptr),
283 for (k = yyleng; segments > 0 && k > 0; k -= 1)
286 segments -= 1;
659 segments that had to be removed to get a match. Calls error if no
675 int segments;
681 for (segments = 0; ; segments += 1)
732 return segments;
747 if (result > segments)
[all...]
/freebsd-11-stable/sys/dev/ips/
H A Dips_commands.c72 static void ips_io_request_callback(void *cmdptr, bus_dma_segment_t *segments,int segnum, int error) argument
104 sg_list[i].addr = segments[i].ds_addr;
105 sg_list[i].len = segments[i].ds_len;
106 length += segments[i].ds_len;
115 command_struct->buffaddr = segments[0].ds_addr;
116 length = segments[0].ds_len;
131 PRINTF(10, "ips test: command id: %d segments: %d "
134 length, segments[0].ds_len);
172 static void ips_adapter_info_callback(void *cmdptr, bus_dma_segment_t *segments,int segnum, int error) argument
186 command_struct->buffaddr = segments[
271 ips_drive_info_callback(void *cmdptr, bus_dma_segment_t *segments,int segnum, int error) argument
510 ips_read_nvram_callback(void *cmdptr, bus_dma_segment_t *segments,int segnum, int error) argument
[all...]
H A Dips_ioctl.c52 static void ips_ioctl_callback(void *cmdptr, bus_dma_segment_t *segments,int segnum, int error) argument
62 command_buffer->buffaddr = segments[0].ds_addr;
/freebsd-11-stable/sys/xen/interface/
H A Dkexec.h119 * - The image segments have writeable 1:1 virtual to machine
188 * For KEXEC_TYPE_DEFAULT images, the segments may be anywhere in RAM.
196 * All image segments will be loaded to their destination machine
198 * segments with a source buffer (from dest_maddr + buf_size to
214 } segments; member in struct:xen_kexec_load
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A DMakefile9 SRCS= archive.c ascii.c binary.c main.c sections.c segments.c \
/freebsd-11-stable/sys/amd64/vmm/
H A Dvmm_host.c36 #include <machine/segments.h>
/freebsd-11-stable/usr.bin/elfcopy/
H A DMakefile20 SRCS= archive.c ascii.c binary.c main.c pe.c sections.c segments.c symbols.c
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveInterval.h202 Segments segments; // the liveness segments
214 iterator begin() { return segments.begin(); }
215 iterator end() { return segments.end(); }
217 const_iterator begin() const { return segments.begin(); }
218 const_iterator end() const { return segments.end(); }
234 /// Constructs a new LiveRange object by copying segments and valnos from
242 /// Copies values numbers and live segments from \p Other into this range.
252 // Now we can copy segments and remap their valnos.
253 for (const Segment &S : Other.segments)
[all...]

Completed in 147 milliseconds

12345