• Home
  • Raw
  • Download

Lines Matching refs:fT

23             if (coinRec->fCoinPtTStart->fT > coinPtTEnd->fT) {  in extend()
26 if (coinRec->fCoinPtTEnd->fT < coinPtTStart->fT) { in extend()
29 if (coinRec->fCoinPtTStart->fT > coinPtTStart->fT) { in extend()
33 if (coinRec->fCoinPtTEnd->fT < coinPtTEnd->fT) { in extend()
45 SkASSERT(coinPtTStart->fT < coinPtTEnd->fT); in add()
46 bool flipped = oppPtTStart->fT > oppPtTEnd->fT; in add()
61 double denom = overE->fT - overS->fT; in t_range()
64 double sRatio = (start - overS->fT) / denom; in t_range()
65 double eRatio = (end - overS->fT) / denom; in t_range()
66 *coinTs = coinPtTStart->fT + (coinPtTEnd->fT - coinPtTStart->fT) * sRatio; in t_range()
67 *coinTe = coinPtTStart->fT + (coinPtTEnd->fT - coinPtTStart->fT) * eRatio; in t_range()
96 double startRange = coin->fCoinPtTEnd->fT - startPtT->fT; in addExpanded()
100 double startPart = (test->t() - startPtT->fT) / startRange; in addExpanded()
101 double oStartRange = coin->fOppPtTEnd->fT - oStartPtT->fT; in addExpanded()
105 double oStartPart = (oTest->t() - oStartPtT->fT) / oStartRange; in addExpanded()
111 double newT = oStartPtT->fT + oStartRange * startPart; in addExpanded()
119 double newT = startPtT->fT + startRange * oStartPart; in addExpanded()
202 int tweenCount = (int) between(check->fCoinPtTStart->fT, cTs, check->fCoinPtTEnd->fT) in addIfMissing()
203 + (int) between(check->fCoinPtTStart->fT, cTe, check->fCoinPtTEnd->fT) in addIfMissing()
204 + (int) between(check->fOppPtTStart->fT, oTs, check->fOppPtTEnd->fT) in addIfMissing()
205 + (int) between(check->fOppPtTStart->fT, oTe, check->fOppPtTEnd->fT); in addIfMissing()
211 if ((over1s->fT < over1e->fT) != (over2s->fT < over2e->fT)) { in addIfMissing()
290 if (testS && testS->fT >= inner->fCoinPtTStart->fT in addMissing()
291 && testE && testE->fT <= inner->fCoinPtTEnd->fT in addMissing()
297 if (testS && testS->fT >= outer->fCoinPtTStart->fT in addMissing()
298 && testE && testE->fT <= outer->fCoinPtTEnd->fT in addMissing()
346 if (s1->fT > e1->fT) { in addOverlap()
683 *overS = SkTMax(SkTMin(coin1s->fT, coin1e->fT), SkTMin(coin2s->fT, coin2e->fT)); in overlap()
684 *overE = SkTMin(SkTMax(coin1s->fT, coin1e->fT), SkTMax(coin2s->fT, coin2e->fT)); in overlap()