HomeSort by relevance Sort by last modified time
    Searched defs:segment (Results 101 - 125 of 211) sorted by null

1 2 3 45 6 7 8 9

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
path.c 394 VGubyte segment = ((VGubyte*)(p->segments->data))[i]; local
395 VGint command = SEGMENT_COMMAND(segment);
396 VGboolean relative = SEGMENT_ABS_REL(segment);
606 assert(!"Unknown segment!");
689 p.segment = ((VGubyte*)(path->segments->data))[i];
690 command = SEGMENT_COMMAND(p.segment);
691 relative = SEGMENT_ABS_REL(p.segment);
720 p.segment = VG_LINE_TO;
731 p.segment = VG_LINE_TO;
803 assert(!"Unknown segment!");
822 VGubyte segment = SEGMENT_COMMAND(pd->segment);\/* abs bit is 0 *\/ local
950 VGubyte segment; member in struct:path_iter_data
1171 VGubyte segment; local
1274 VGubyte segment = ((VGubyte*)(p->segments->data))[i]; local
1632 VGubyte segment = VG_MOVE_TO_ABS; local
1642 VGubyte segment = VG_LINE_TO_ABS; local
1655 VGubyte segment = VG_CUBIC_TO_ABS; local
1735 VGubyte segment; local
1811 VGubyte segment; local
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 607 int32_t segment = data_->SearchUShort(StartCodeOffset(seg_count_), local
613 if (segment == -1) {
616 int32_t start_code = StartCode(segment);
617 return RetrieveGlyphId(segment, start_code, character);
620 int32_t CMapTable::CMapFormat4::RetrieveGlyphId(int32_t segment,
626 int32_t id_range_offset = IdRangeOffset(segment);
628 return (character + IdDelta(segment)) % 65536;
631 IdRangeOffsetLocation(segment) +
643 int32_t CMapTable::CMapFormat4::StartCode(int32_t segment) {
644 if (!IsValidIndex(segment)) {
982 Ptr<Segment> segment = new Segment; local
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCommon.cpp 119 SkOpSegment* segment = backPtr.fOther; local
123 if (segment->activeAngle(tIndex, &done, &angles)) {
132 return last->segment();
142 sorted[0]->segment()->debugShowSort(__FUNCTION__, sorted, 0, 0, 0, sortable);
153 segment = angle->segment();
154 winding = segment->windSum(angle);
156 int spanWinding = segment->spanSign(angle->start(), angle->end());
166 segment->debugShowSort(__FUNCTION__, sorted, firstIndex, winding, 0, sortable);
176 winding -= angle->segment()->spanSign(angle)
    [all...]
SkOpSegment.cpp 426 // This could later limit segment tests to the two adjacent
553 // two span in one segment are separated by float epsilon on one span but
554 // not the other, if one segment is very small. For this
3142 const SkOpSegment& segment = *angle.segment(); local
3238 const SkOpSegment* segment = firstAngle->segment(); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86arch.h 284 yasm_value segment; /* target segment */ member in struct:x86_jmpfar
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 73 RDF_RELOC_SEG /* segment containing symbol */
99 unsigned int segment; /* assigned RDF "segment" index */ member in struct:rdf_symrec_data
126 unsigned long indx; /* symbol "segment" (extern/common only) */
151 rdf_objfmt_sym_set_data(yasm_symrec *sym, unsigned int segment)
155 rsymd->segment = segment;
250 * segment number.
268 reloc->refseg = rsymd->segment;
575 YASM_WRITE_8(localbuf, scnum); /* segment referred to *
    [all...]
  /external/freetype/src/autofit/
aflatin.c 325 /* segment; we first need to find in which contour the extremum */
395 /* now set the `round' flag depending on the segment's kind */
799 AF_Segment segment = NULL; local
847 FT_Pos min_pos = 32000; /* minimum segment pos != min_coord */
848 FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */
892 /* we are just leaving an edge; record a new segment! */
893 segment->last = point;
894 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 );
896 /* a segment is round if either its first or last point */
898 if ( ( segment->first->flags | point->flags )
    [all...]
aflatin2.c 291 /* segment; we first need to find in which contour the extremum */
335 /* now, set the `round' flag depending on the segment's kind */
712 AF_Segment segment = NULL; local
773 else /* otherwise, find first segment start, if any */
791 /* we're at the start of a new segment */
818 /* record new segment */
819 error = af_axis_hints_new_segment( axis, memory, &segment );
823 segment[0] = seg0;
824 segment->dir = first->out_dir;
825 segment->first = first
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
path.c 394 VGubyte segment = ((VGubyte*)(p->segments->data))[i]; local
395 VGint command = SEGMENT_COMMAND(segment);
396 VGboolean relative = SEGMENT_ABS_REL(segment);
606 assert(!"Unknown segment!");
689 p.segment = ((VGubyte*)(path->segments->data))[i];
690 command = SEGMENT_COMMAND(p.segment);
691 relative = SEGMENT_ABS_REL(p.segment);
720 p.segment = VG_LINE_TO;
731 p.segment = VG_LINE_TO;
803 assert(!"Unknown segment!");
822 VGubyte segment = SEGMENT_COMMAND(pd->segment);\/* abs bit is 0 *\/ local
950 VGubyte segment; member in struct:path_iter_data
1171 VGubyte segment; local
1274 VGubyte segment = ((VGubyte*)(p->segments->data))[i]; local
1632 VGubyte segment = VG_MOVE_TO_ABS; local
1642 VGubyte segment = VG_LINE_TO_ABS; local
1655 VGubyte segment = VG_CUBIC_TO_ABS; local
1735 VGubyte segment; local
1811 VGubyte segment; local
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 607 int32_t segment = data_->SearchUShort(StartCodeOffset(seg_count_), local
613 if (segment == -1) {
616 int32_t start_code = StartCode(segment);
617 return RetrieveGlyphId(segment, start_code, character);
620 int32_t CMapTable::CMapFormat4::RetrieveGlyphId(int32_t segment,
626 int32_t id_range_offset = IdRangeOffset(segment);
628 return (character + IdDelta(segment)) % 65536;
631 IdRangeOffsetLocation(segment) +
643 int32_t CMapTable::CMapFormat4::StartCode(int32_t segment) {
644 if (!IsValidIndex(segment)) {
982 Ptr<Segment> segment = new Segment; local
    [all...]
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 119 SkOpSegment* segment = backPtr.fOther; local
123 if (segment->activeAngle(tIndex, &done, &angles)) {
132 return last->segment();
142 sorted[0]->segment()->debugShowSort(__FUNCTION__, sorted, 0, 0, 0, sortable);
153 segment = angle->segment();
154 winding = segment->windSum(angle);
156 int spanWinding = segment->spanSign(angle->start(), angle->end());
166 segment->debugShowSort(__FUNCTION__, sorted, firstIndex, winding, 0, sortable);
176 winding -= angle->segment()->spanSign(angle)
    [all...]
SkOpSegment.cpp 426 // This could later limit segment tests to the two adjacent
553 // two span in one segment are separated by float epsilon on one span but
554 // not the other, if one segment is very small. For this
3142 const SkOpSegment& segment = *angle.segment(); local
3238 const SkOpSegment* segment = firstAngle->segment(); local
    [all...]
  /external/webp/src/enc/
frame.c 217 // Finalize Segment probability based on the coding tree
474 const int segment = it->mb_->segment_; local
515 it->bit_count_[segment][i16] += it->luma_bits_;
516 it->bit_count_[segment][2] += it->uv_bits_;
703 VP8SetSegmentParams(enc, q); // setup segment quantizations and filters
704 SetSegmentProbas(enc); // compute segment probabilities
  /frameworks/base/services/java/com/android/server/content/
ContentService.java 865 String segment = getUriSegment(uri, index); local
948 String segment = null; local
    [all...]
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java 105 public JetGameEvent(JetPlayer player, short segment, byte track, byte channel,
108 this.segment = segment;
116 public short segment; field in class:JetBoyView.JetGameEvent
452 // JET info: in this example, the game uses segment 0 for the duration of the game play,
453 // JET info: and plays segment 1 several times as the "outro" music, so we're going to
458 // JET info: it is located at segment 0
733 processJetEvent(jetEvent.player, jetEvent.segment, jetEvent.track,
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
aflatin2.c 291 /* segment; we first need to find in which contour the extremum */
335 /* now, set the `round' flag depending on the segment's kind */
712 AF_Segment segment = NULL; local
773 else /* otherwise, find first segment start, if any */
791 /* we're at the start of a new segment */
818 /* record new segment */
819 error = af_axis_hints_new_segment( axis, memory, &segment );
823 segment[0] = seg0;
824 segment->dir = first->out_dir;
825 segment->first = first
    [all...]
  /external/chromium_org/ui/gfx/
render_text.cc 971 const internal::LineSegment* segment = &lines_[line].segments[i]; local
    [all...]
render_text_win.cc 237 const internal::LineSegment* segment = &lines[i].segments[j]; local
238 internal::TextRun* run = runs[segment->run];
241 previous_segment = segment;
246 segment->char_range.start());
248 DCHECK_EQ(previous_segment->x_range.end(), segment->x_range.start());
250 DCHECK_EQ(segment->x_range.end(), previous_segment->x_range.start());
253 previous_segment = segment;
368 // A (line index, segment index) pair that specifies a segment in |lines_|.
376 // them. Adds a new Line to the back of |lines_| whenever a new segment can'
404 LineSegment* segment = SegmentFromHandle(rtl_segments_[i - 1]); local
450 LineSegment segment; local
819 const internal::LineSegment* segment = &line.segments[j]; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 95 * The first intersecting segment that is found is returned; in the case where more than one
96 * segment is found, the segment closest to the start point is returned.
429 * returns the closest intersecting segment, if any exists.
443 LineSegment segment = (LineSegment)segmentArray[x]; local
448 movementDirection.dot(segment.mNormal) : -1.0f;
451 (excludeObject == null || segment.owner != excludeObject) &&
452 segment.calculateIntersection(startPoint, endPoint, hitPoint)) {
458 normalX = segment.mNormal.x;
459 normalY = segment.mNormal.y
490 LineSegment segment = (LineSegment)segmentArray[x]; local
    [all...]
  /external/stressapptest/src/
worker.cc 2829 int64 segment = (block_num \/ blocks_per_segment_) % num_segments; local
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 393 // ----- segment symbols ----- //
573 // ----- segment symbols ----- //
674 // the value of a TLS symbol is the offset to the TLS segment
1822 ELFSegment& segment = *seg; local
    [all...]
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 2825 int segment = 0; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /external/libnfc-nci/src/nfc/int/
rw_int.h 148 BOOLEAN b_rseg; /* Segment 0 read from tag */
151 UINT8 segment; /* Current Tag segment */ member in struct:__anon23631
173 UINT8 attr_seg; /* Tag segment for which attributes are prepared */
174 UINT8 lock_attr_seg; /* Tag segment for which lock attributes are prepared */
318 UINT8 attr_seg; /* Tag segment for which attributes are prepared */
319 UINT8 lock_attr_seg; /* Tag segment for which lock attributes are prepared */
320 UINT8 segment; /* Current operating segment */ member in struct:__anon23635
    [all...]
  /external/libvpx/libvpx/nestegg/src/
nestegg.c 253 struct segment { struct
294 struct segment segment; member in struct:nestegg
435 E_MASTER(ID_SEEK_HEAD, TYPE_MASTER, struct segment, seek_head),
436 E_SINGLE_MASTER(ID_INFO, TYPE_MASTER, struct segment, info),
437 E_MASTER(ID_CLUSTER, TYPE_MASTER, struct segment, cluster),
438 E_SINGLE_MASTER(ID_TRACKS, TYPE_MASTER, struct segment, tracks),
439 E_SINGLE_MASTER(ID_CUES, TYPE_MASTER, struct segment, cues),
445 E_SINGLE_MASTER_O(ID_SEGMENT, TYPE_MASTER, nestegg, segment),
1156 if (ne_get_uint(ctx->segment.info.timecode_scale, &scale) != 0
    [all...]

Completed in 2608 milliseconds

1 2 3 45 6 7 8 9