Searched defs:chase (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/pathops/
H A DSkPathOpsSimplify.cpp24 SkTDArray<SkOpSpanBase*> chase; local
34 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd,
77 SkASSERT(!SkPathOpsDebug::ChaseContains(chase, last));
78 *chase.append() = last;
80 SkDebugf("%s chase.append id=%d", __FUNCTION__, last->segment()->debugID());
88 current = FindChase(&chase, &start, &end);
H A DSkPathOpsCommon.cpp76 SkOpSegment* FindChase(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** startPtr, argument
78 while (chase->count()) {
80 chase->pop(&span);
89 *chase->insert(0) = span;
91 *chase->append() = span;
126 // OPTIMIZATION: should this also add to the chase?
134 *chase->insert(0) = span;
136 *chase->append() = span;
H A DSkPathOpsOp.cpp13 static SkOpSegment* findChaseOp(SkTDArray<SkOpSpanBase*>& chase, SkOpSpanBase** startPtr, argument
15 while (chase.count()) {
17 chase.pop(&span);
27 *chase.insert(0) = span;
29 *chase.append() = span;
68 // OPTIMIZATION: should this also add to the chase?
77 *chase.insert(0) = span;
79 *chase.append() = span;
98 SkTDArray<SkOpSpanBase*> chase; local
108 SkOpSegment* next = current->findNextOp(&chase,
[all...]
H A DSkOpSegment.cpp620 SkOpSegment* SkOpSegment::findNextOp(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** nextStart, argument
699 SkASSERT(!SkPathOpsDebug::ChaseContains(*chase, last));
700 *chase->append() = last;
702 SkDebugf("%s chase.append segment=%d span=%d", __FUNCTION__,
725 SkOpSegment* SkOpSegment::findNextWinding(SkTDArray<SkOpSpanBase*>* chase, argument
795 SkASSERT(!SkPathOpsDebug::ChaseContains(*chase, last));
796 *chase->append() = last;
798 SkDebugf("%s chase.append segment=%d span=%d", __FUNCTION__,
/external/tremolo/Tremolo/
H A Dcodebook.c168 long chase=0; local
171 /* chase the tree as far as it's already populated, fill in past */
174 if(chase>=top){
175 if (chase < 0 || chase >= n) return 1;
177 r[chase*2]=top;
178 r[chase*2+1]=0;
180 if (chase < 0 || chase >= n || chase*
650 ogg_uint32_t chase=0; local
[all...]
/external/valgrind/VEX/priv/
H A Dir_opt.c1348 static IRExpr* chase ( IRExpr** env, IRExpr* e ) function
1354 if (0) { vex_printf("chase "); ppIRExpr(e); vex_printf("\n"); }
1361 /* Similar to |chase|, but follows at most one level of tmp reference. */
2328 IRExpr* a1 = chase(env, e->Iex.Binop.arg1);
6009 print_flat_expr(env, chase(env, e));

Completed in 193 milliseconds