HomeSort by relevance Sort by last modified time
    Searched refs:segment (Results 51 - 75 of 1112) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/
webmdec.cc 27 if (webm_ctx->segment != NULL) {
28 mkvparser::Segment *const segment = member in class:__anon17290::mkvparser
29 reinterpret_cast<mkvparser::Segment*>(webm_ctx->segment);
30 delete segment;
36 webm_ctx->segment = NULL;
48 mkvparser::Segment *const segment = member in class:__anon17290::mkvparser
49 reinterpret_cast<mkvparser::Segment*>(webm_ctx->segment)
75 mkvparser::Segment* segment; local
132 mkvparser::Segment *const segment = member in class:mkvparser
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
PieChart.java 29 public class PieChart extends Plot<Segment, SegmentFormatter, PieRenderer> {
86 public void addSegment(Segment segment, SegmentFormatter formatter) {
87 addSeries(segment, formatter);
90 public void removeSegment(Segment segment) {
91 removeSeries(segment);
  /external/eigen/doc/examples/
Tutorial_BlockOperations_vector.cpp 12 v.segment(1,4) *= 2;
13 cout << "after 'v.segment(1,4) *= 2', v =" << endl << v << endl;
  /external/okhttp/okio/okio/src/main/java/okio/
SegmentedByteString.java 30 * <p>The first half of the directory is the cumulative byte count covered by each segment. The
37 * Bytes preceding this offset are unused, as are bytes beyond the segment's effective size.
47 * <p>This structure is chosen so that the segment holding a particular offset can be found by
61 for (Segment s = buffer.head; offset < byteCount; s = s.next) {
63 throw new AssertionError("s.limit == s.pos"); // Empty segment. This should not happen!
74 for (Segment s = buffer.head; offset < byteCount; s = s.next) {
126 int segment = segment(pos); local
127 int segmentOffset = segment == 0 ? 0 : directory[segment - 1]
133 private int segment(int pos) { method in class:SegmentedByteString
172 Segment segment = new Segment(segments[s], segmentPos, local
    [all...]
Segment.java 19 * A segment of a buffer.
21 * <p>Each segment in a buffer is a circularly-linked list node referencing the following and
24 * <p>Each segment in the pool is a singly-linked list node referencing the rest of segments in the
28 * segment's byte array is shared the segment may not be recycled, nor may its byte data be changed.
29 * The lone exception is that the owner segment is allowed to append to the segment, writing data at
30 * {@code limit} and beyond. There is a single owning segment for each byte array. Positions,
33 final class Segment {
39 /** The next byte of application data byte to read in this segment. *
    [all...]
  /external/valgrind/drd/tests/
sem_as_mutex3.stderr.exp 6 Other segment start (thread 2)
8 Other segment end (thread 2)
sem_open3.stderr.exp 6 Other segment start (thread 2)
8 Other segment end (thread 2)
hg04_race.stderr.exp 8 Other segment start (thread 2)
10 Other segment end (thread 2)
18 Other segment start (thread 2)
20 Other segment end (thread 2)
hg05_race2.stderr.exp 8 Other segment start (thread 2)
10 Other segment end (thread 2)
18 Other segment start (thread 2)
20 Other segment end (thread 2)
tc21_pthonce.stderr.exp 8 Other segment start (thread 2)
10 Other segment end (thread 2)
18 Other segment start (thread 2)
20 Other segment end (thread 2)
  /external/valgrind/memcheck/tests/linux/
brk.stderr.exp 2 brk segment overflow in thread #1: can't grow to 0x........
3 brk segment overflow in thread #1: can't grow to 0x........
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86-64-segment.l 3 3 # test segment reg insns with memory operand
8 8 # test segment reg insns with REX
x86-64-segovr.s 1 # 64bit segment overrides
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
relax-1.s 1 ; Test relaxation into non-zero offset to different segment.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
seg.d 9 # On MIPS, the first segment is for .reginfo.
15 Section to Segment mapping:
16 Segment Sections...
18 # On MIPS, the first segment is for .reginfo.
  /external/google-breakpad/src/tools/mac/dump_syms/
macho_dump.cc 77 printf(" section %d '%s' in segment '%s'\n"
101 bool SegmentCommand(const mach_o::Segment &segment) {
102 printf(" load command %d: %s-bit segment '%s'\n"
109 index_++, (segment.bits_64 ? "64" : "32"), segment.name.c_str(),
110 segment.vmaddr, segment.vmsize, segment.maxprot,
111 segment.initprot, mach_o::SegmentFlags(segment.flags)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
PathMatcher.java 76 Node addChild(String segment) {
80 Node node = mMap.get(segment);
85 mMap.put(segment, n);
89 Node getChild(String segment) {
91 return mMap.get(segment);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowUriMatcher.java 59 String segment = segments.get(0);
62 if (node.map.containsKey(segment)) {
63 return matchSegments(node.map.get(segment), segments);
68 id = Long.parseLong(segment);
84 String segment = segments.get(0); local
86 if (segment.equals("#")) {
93 else if (segment.equals("*")) {
101 nextNode = baseNode.map.get(segment);
104 baseNode.map.put(segment, nextNode);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
Gains.cpp 207 int segment = 0; local
211 segment = 0;
213 segment = 1;
215 segment = 2;
221 float decibels = curve[segment].mDBAttenuation +
222 ((float)(volIdx - curve[segment].mIndex)) *
223 ( (curve[segment+1].mDBAttenuation -
224 curve[segment].mDBAttenuation) /
225 ((float)(curve[segment+1].mIndex -
226 curve[segment].mIndex)) )
    [all...]
  /external/skia/src/pathops/
SkOpAngle.cpp 70 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd,
72 segment()->debugID(), debugID(), fSectorStart, fSectorEnd, fStart->t(), fEnd->t(),
73 rh->segment()->debugID(), rh->debugID(), rh->fSectorStart, rh->fSectorEnd,
90 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd,
92 segment()->debugID(), debugID(), fSectorStart, fSectorEnd, fStart->t(), fEnd->t(),
93 rh->segment()->debugID(), rh->debugID(), rh->fSectorStart, rh->fSectorEnd,
180 if (segment()->verb() == SkPath::kLine_Verb) {
181 const SkPoint* linePts = segment()->pts();
188 SkPath::Verb testVerb = test->segment()->verb();
247 if (!fCurvePart[SkPathOpsVerbToPoints(this->segment()->verb())].approximatelyEqual
377 const SkOpSegment& segment = *this->segment(); local
412 const SkOpSegment& segment = index ? *rh->segment() : *this->segment(); local
440 const SkOpSegment& segment = index ? *rh->segment() : *this->segment(); local
490 const SkOpSegment& segment = sIndex ? *rh->segment() : *this->segment(); local
504 const SkOpSegment* segment = this->segment(); local
729 const SkOpSegment* segment = this->segment(); local
825 SkOpSegment* SkOpAngle::segment() const { function in class:SkOpAngle
843 const SkOpSegment* segment = fStart->segment(); local
977 const SkOpSegment* segment = fStart->segment(); local
    [all...]
  /external/skia/tests/
PathOpsDebug.cpp 787 return this->segment()->debugAngle(id);
791 return this->segment()->debugContour(id);
795 return this->segment()->debugPtT(id);
799 return this->segment()->debugSegment(id);
808 return this->segment()->debugSpan(id);
818 const SkOpSegment* segment = this->segment(); local
823 SkDebugf("[%d", segment->debugID());
827 SkDebugf("%d", fNext->fStart->segment()->debugID());
850 if (segment->operand())
900 SkOpSegment* segment = next->segment(); local
1213 const SkOpSegment* segment = &fHead; local
1227 const SkOpSegment* segment = &fHead; local
1239 const SkOpSegment* segment = &fHead; local
1247 const SkOpSegment* segment = &fHead; local
1257 const SkOpSegment* segment = &fHead; local
1269 const SkOpSegment* segment = &fHead; local
1299 const SkOpSegment* segment = &fHead; local
1320 const SkOpSegment* segment = contour->first(); local
1357 const SkOpSegment* segment = contour->first(); local
1380 const SkOpSegment* segment = contour->first(); local
1394 const SkOpSegment* segment = contour->first(); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
path_utils.h 32 #define SEGMENT_COMMAND(command) /* Extract segment type */ \
61 VGubyte segment = segments[i]; local
62 VGint command = SEGMENT_COMMAND(segment);
103 assert(!"Unknown segment!");
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 100 """ Queues a segment """
104 """ Object representing a segment """
384 """ Computes a segment output file """
489 for segment in jet_file.GetSegments():
490 if FileExists(segment.filename):
491 if not FileJustName(segment.filename) in zip.namelist():
492 zip.write(segment.filename, FileJustName(segment.filename))
493 if FileExists(segment.output):
494 if not FileJustName(segment.output) in zip.namelist():
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
XMPPath.java 17 * Representates an XMP XMPPath with segment accessor methods.
51 * Append a path segment
53 * @param segment the segment to add
55 public void add(XMPPathSegment segment)
57 segments.add(segment);
62 * @param index the index of the segment to return
63 * @return Returns a path segment.
  /frameworks/rs/api/
Scanner.h 45 /* Reads from the file, adding the characters to "segment" until
48 void readUpTo(char delimiter, std::string* segment);
49 /* Reads from the file, adding the characters to "segment" until
52 void readRestOfLine(std::string* segment);

Completed in 1698 milliseconds

1 23 4 5 6 7 8 91011>>