Lines Matching refs:ptIndex

35     unsigned ptIndex = seg->fPtIndex;  in NextSegment()  local
39 } while (seg->fPtIndex == ptIndex); in NextSegment()
85 SkScalar distance, int mint, int maxt, int ptIndex) { in compute_quad_segs() argument
91 distance = this->compute_quad_segs(tmp, distance, mint, halft, ptIndex); in compute_quad_segs()
92 distance = this->compute_quad_segs(&tmp[2], distance, halft, maxt, ptIndex); in compute_quad_segs()
100 seg->fPtIndex = ptIndex; in compute_quad_segs()
109 SkScalar distance, int mint, int maxt, int ptIndex) { in compute_conic_segs() argument
115 distance = this->compute_conic_segs(tmp[0], distance, mint, halft, ptIndex); in compute_conic_segs()
116 distance = this->compute_conic_segs(tmp[1], distance, halft, maxt, ptIndex); in compute_conic_segs()
124 seg->fPtIndex = ptIndex; in compute_conic_segs()
133 SkScalar distance, int mint, int maxt, int ptIndex) { in compute_cubic_segs() argument
139 distance = this->compute_cubic_segs(tmp, distance, mint, halft, ptIndex); in compute_cubic_segs()
140 distance = this->compute_cubic_segs(&tmp[3], distance, halft, maxt, ptIndex); in compute_cubic_segs()
148 seg->fPtIndex = ptIndex; in compute_cubic_segs()
158 int ptIndex = fFirstPtIndex; in buildSegments() local
161 bool firstMoveTo = ptIndex < 0; in buildSegments()
176 ptIndex += 1; in buildSegments()
193 seg->fPtIndex = ptIndex; in buildSegments()
197 ptIndex++; in buildSegments()
203 distance = this->compute_quad_segs(pts, distance, 0, kMaxTValue, ptIndex); in buildSegments()
206 ptIndex += 2; in buildSegments()
213 distance = this->compute_conic_segs(conic, distance, 0, kMaxTValue, ptIndex); in buildSegments()
220 ptIndex += 3; in buildSegments()
226 distance = this->compute_cubic_segs(pts, distance, 0, kMaxTValue, ptIndex); in buildSegments()
229 ptIndex += 3; in buildSegments()
245 fFirstPtIndex = ptIndex; in buildSegments()
251 unsigned ptIndex = 0; in buildSegments() local
256 SkASSERT(seg->fPtIndex >= ptIndex); in buildSegments()
267 ptIndex = seg->fPtIndex; in buildSegments()