Home
last modified time | relevance | path

Searched refs:fIsCoincident (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/pathops/
DSkIntersections.cpp35 if (fIsCoincident[0] == 3 && between(fT[0][0], one, fT[0][1])) { in insert()
81 fIsCoincident[0] += fIsCoincident[0] & clearMask; in insert()
82 fIsCoincident[1] += fIsCoincident[1] & clearMask; in insert()
118 fIsCoincident[0] |= bit; in setCoincident()
119 fIsCoincident[1] |= bit; in setCoincident()
160 int coBit = fIsCoincident[0] & (1 << index); in removeOne()
161 fIsCoincident[0] -= ((fIsCoincident[0] >> 1) & ~((1 << index) - 1)) + coBit; in removeOne()
162 SkASSERT(!(coBit ^ (fIsCoincident[1] & (1 << index)))); in removeOne()
163 fIsCoincident[1] -= ((fIsCoincident[1] >> 1) & ~((1 << index) - 1)) + coBit; in removeOne()
DSkIntersections.h53 fIsCoincident[0] &= ~bit; in clearCoincidence()
54 fIsCoincident[1] &= ~bit; in clearCoincidence()
129 return (fIsCoincident[0] & 1 << index) != 0; in isCoincident()
195 sk_bzero(fIsCoincident, sizeof(fIsCoincident)); in reset()
314 uint16_t fIsCoincident[2]; // bit set for each curve's coincident T variable
DSkDLineIntersection.cpp28 fIsCoincident[0] = fIsCoincident[1] = 0x03; in cleanUpParallelLines()
DSkPathOpsDebug.cpp2687 if (!fIsCoincident[0]) { in debugCoincidentUsed()
2688 SkASSERT(!fIsCoincident[1]); in debugCoincidentUsed()
2694 if (fIsCoincident[0] & (1 << index)) { in debugCoincidentUsed()
2698 if (fIsCoincident[1] & (1 << index)) { in debugCoincidentUsed()
/external/skia/tests/
DPathOpsDebug.cpp201 fIsCoincident[0] & (1 << index) ? "*" : "", fT[0][index], in dump()
202 fIsCoincident[1] & (1 << index) ? "*" : "", fT[1][index], in dump()