Home | History | Annotate | Download | only in Intersection

Lines Matching defs:out

249     char out[256];
251 if (bitWidth * 2 + 1 >= (int) sizeof(out)) {
255 if (bitHeight >= (int) sizeof(out)) {
274 char* outPtr = out;
283 SkDebugf("%s\n", out);
379 bool testSimplify(const SkPath& path, bool fill, SkPath& out, SkBitmap& bitmap) {
383 simplify(path, fill, out);
387 return comparePaths(path, out, bitmap) == 0;
390 bool testSimplifyx(SkPath& path, bool useXor, SkPath& out, State4& state,
397 simplifyx(path, out);
401 int result = comparePaths(path, out, state.bitmap);
422 SkPath out;
423 simplifyx(path, out);
425 int result = comparePaths(path, out, bitmap);
438 SkPath out;
439 operate(a, b, shapeOp, out);
462 scaledOut.addPath(out, scale);
463 scaledOut.setFillType(out.getFillType());
464 int result = comparePaths(pathOut, scaledPathOut, out, scaledOut, bitmap, a, b, shapeOp, scale);