HomeSort by relevance Sort by last modified time
    Searched full:segment (Results 151 - 175 of 2659) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/kernel-headers/original/asm-mips/
bootinfo.h 79 phys_t addr; /* start of memory segment */
80 phys_t size; /* size of memory segment */
81 long type; /* type of memory segment */
shmbuf.h 15 size_t shm_segsz; /* size of segment (bytes) */
  /external/kernel-headers/original/linux/can/
netlink.h 26 __u32 prop_seg; /* Propagation segment in TQs */
27 __u32 phase_seg1; /* Phase buffer segment 1 in TQs */
28 __u32 phase_seg2; /* Phase buffer segment 2 in TQs */
  /bionic/linker/
linker_phdr.cpp 44 Each loadable segment has the following important properties:
46 p_offset -> segment file offset
47 p_filesz -> segment file size
48 p_memsz -> segment memory size (always >= p_filesz)
49 p_vaddr -> segment's virtual address
50 p_flags -> segment flags (e.g. readable, writable, executable)
59 - if a segment's p_filesz is smaller than its p_memsz, the extra bytes
64 page inherits the mapping flags of the latter segment.
66 Finally, the real load addrs of each segment is not p_vaddr. Instead the
67 loader decides where to load the first segment, then will load all other
    [all...]
  /external/clang/test/Sema/
attr-section.c 9 "sadf"))); // expected-error {{mach-o section specifier requires a segment and section separated by a comma}}
  /external/eigen/blas/
BandTriangularSolver.h 47 other.coeffRef(i,col) -= cjLhs.row(i).segment(actual_start,actual_k).transpose()
48 .cwiseProduct(other.col(col).segment(IsLower ? i-actual_k : i+1,actual_k)).sum();
86 other.col(col).segment(IsLower ? i+1 : i-actual_k, actual_k)
87 -= other.coeff(i,col) * cjLhs.col(i).segment(actual_start,actual_k);
  /external/iptables/extensions/
libxt_TEE.man 2 machine on the \fBlocal\fP network segment. In other words, the nexthop
  /external/kernel-headers/original/asm-arm/
shmbuf.h 16 size_t shm_segsz; /* size of segment (bytes) */
  /external/srec/srec/EventLog/include/
riff.h 129 * An audio segment.
134 * Position (byte #) where audio segment begins.
138 * Length of audio segment.
197 * A RIFF audio segment.
  /external/valgrind/main/drd/
drd_error.h 77 eSegment, // in a segment (as defined in pub_tool_debuginfo.h)
92 DebugInfo* debuginfo; // Segment
93 Char name[256]; // Segment
94 Char descr[256]; // Segment
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.h 45 class Segment;
96 void conditionallySubdivide(LoopBlinnPathProcessorImplementation::Segment*,
97 Vector<LoopBlinnPathProcessorImplementation::Segment*>& nextSegments);
105 Vector<LoopBlinnPathProcessorImplementation::Segment*> allSegmentsOverlappingY(LoopBlinnPathProcessorImplementation::Contour*, float x, float y);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
system_32.h 16 #include <asm/segment.h>
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
system_32.h 16 #include <asm/segment.h>
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
system_32.h 16 #include <asm/segment.h>
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
system_32.h 16 #include <asm/segment.h>
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
system_32.h 16 #include <asm/segment.h>
  /frameworks/av/services/camera/libcameraservice/camera2/
JpegProcessor.cpp 266 * Following it, "segment" sections begin with other markers, followed by a
267 * 2-byte length (in network byte order), then the segment data.
270 * the next segment. This is necessary because the data inside segments are
277 * image data to be interpreted as a segment. The only exception to this is at
289 typedef struct segment { struct in namespace:android::camera2
344 // Read JFIF segment markers, skip over segment data
347 segment_t *segment = (segment_t*)(jpegBuffer + size); local
348 uint8_t type = checkJpegMarker(segment->marker);
357 size_t length = ntohs(segment->length)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
Ticker.java 46 private ArrayList<Segment> mSegments = new ArrayList();
63 private final class Segment {
140 Segment(StatusBarNotification n, Drawable icon, CharSequence text) {
191 final Segment seg = mSegments.get(0);
205 final Segment newSegment = new Segment(n, icon, text);
209 Segment seg = mSegments.get(i);
219 Segment seg = mSegments.get(0);
237 Segment seg = mSegments.get(i);
252 Segment seg = mSegments.get(0)
    [all...]
  /external/grub/stage2/
bios.c 30 int nsec, int segment);
46 from/into SEGMENT segment. If READ is BIOSDISK_READ, then read it,
52 int sector, int nsec, int segment)
82 SEGMENT:ADDRESS. */
83 dap.buffer = segment << 16;
98 return biosdisk (read, drive, geometry, sector, nsec, segment);
120 nsec, segment);
  /external/icu4c/i18n/
strmatch.h 35 * A StringMatcher may represent a segment, in which case it has a
36 * positive segment number. This affects how the matcher converts
39 * A StringMatcher that is not a segment should not be used as a
53 * @param segmentNum the segment number from 1..n, or 0 if this is
54 * not a segment.
193 * set of matches with this segment.
228 * The segment number, 1-based, or 0 if not a segment.
  /external/qemu/
elf_ops.h 20 bswap32s(&phdr->p_type); /* Segment type */
21 bswapSZs(&phdr->p_offset); /* Segment file offset */
22 bswapSZs(&phdr->p_vaddr); /* Segment virtual address */
23 bswapSZs(&phdr->p_paddr); /* Segment physical address */
24 bswapSZs(&phdr->p_filesz); /* Segment size in file */
25 bswapSZs(&phdr->p_memsz); /* Segment size in memory */
26 bswap32s(&phdr->p_flags); /* Segment flags */
27 bswapSZs(&phdr->p_align); /* Segment alignment */
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedPathSegListPropertyTearOff.h 48 int removeItemFromList(const RefPtr<SVGPathSeg>& segment, bool shouldSynchronizeWrappers)
51 return static_pointer_cast<SVGPathSegListPropertyTearOff>(m_baseVal)->removeItemFromList(segment, shouldSynchronizeWrappers);
  /frameworks/compile/mclinker/include/mcld/LD/
ELFSegmentFactory.h 31 /// produce - produce an empty ELF segment information.
32 /// this function will create an ELF segment
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
StrSegment.java 20 * The information container class of segment in a string.
22 * This class defines information of a segment in a string, such as a character, a word or a clause.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
elf.h 34 /* These constants are for the segment types stored in the image headers */
42 #define PT_TLS 7 /* Thread local storage segment */
245 Elf64_Off p_offset; /* Segment file offset */
246 Elf64_Addr p_vaddr; /* Segment virtual address */
247 Elf64_Addr p_paddr; /* Segment physical address */
248 Elf64_Xword p_filesz; /* Segment size in file */
249 Elf64_Xword p_memsz; /* Segment size in memory */
250 Elf64_Xword p_align; /* Segment alignment, file & memory */

Completed in 644 milliseconds

1 2 3 4 5 67 8 91011>>