HomeSort by relevance Sort by last modified time
    Searched refs:coBit (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/experimental/Intersection/
Intersections.cpp 154 int coBit = fIsCoincident[0] & (1 << index);
155 fIsCoincident[0] -= ((fIsCoincident[0] >> 1) & ~((1 << index) - 1)) + coBit;
156 SkASSERT(!(coBit ^ (fIsCoincident[1] & (1 << index))));
157 fIsCoincident[1] -= ((fIsCoincident[1] >> 1) & ~((1 << index) - 1)) + coBit;
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 175 int coBit = fIsCoincident[0] & (1 << index);
176 fIsCoincident[0] -= ((fIsCoincident[0] >> 1) & ~((1 << index) - 1)) + coBit;
177 SkASSERT(!(coBit ^ (fIsCoincident[1] & (1 << index))));
178 fIsCoincident[1] -= ((fIsCoincident[1] >> 1) & ~((1 << index) - 1)) + coBit;

Completed in 3142 milliseconds