Lines Matching refs:fIsCoincident
35 if (fIsCoincident[0] == 3 && between(fT[0][0], one, fT[0][1])) { in insert()
62 fIsCoincident[0] -= (fIsCoincident[0] >> 1) & clearMask; in insert()
63 fIsCoincident[1] -= (fIsCoincident[1] >> 1) & clearMask; in insert()
90 fIsCoincident[0] += fIsCoincident[0] & clearMask; in insert()
91 fIsCoincident[1] += fIsCoincident[1] & clearMask; in insert()
127 fIsCoincident[0] |= bit; in setCoincident()
128 fIsCoincident[1] |= bit; in setCoincident()
169 int coBit = fIsCoincident[0] & (1 << index); in removeOne()
170 fIsCoincident[0] -= ((fIsCoincident[0] >> 1) & ~((1 << index) - 1)) + coBit; in removeOne()
171 SkASSERT(!(coBit ^ (fIsCoincident[1] & (1 << index)))); in removeOne()
172 fIsCoincident[1] -= ((fIsCoincident[1] >> 1) & ~((1 << index) - 1)) + coBit; in removeOne()