Lines Matching defs:out
96 auto out = std::make_unique<float[]>(sig.fReturnSlots);
102 args[sig.fParameterSlots + i] = out.get() + i;
108 verify_values(r, src, out.get(), expected, sig.fReturnSlots, exactCompare);
551 int out = 0;
555 args.add(&out, 1);
557 REPORTER_ASSERT(r, out == 30);
562 RectAndColor out;
566 args.add(&out, 8);
568 REPORTER_ASSERT(r, out.fRect.width() == 15);
569 REPORTER_ASSERT(r, out.fRect.height() == 25);
571 REPORTER_ASSERT(r, out.fColor == blue);
576 int out = 0;
580 args.add(&out, 1);
582 REPORTER_ASSERT(r, out == 8);
587 float out = 0;
591 args.add(&out, 1);
593 REPORTER_ASSERT(r, out == static_cast<float>((7 + 1) * (7 + 2) / 2));
597 SkIRect out = SkIRect::MakeEmpty();
600 args.add(&out, 4);
602 REPORTER_ASSERT(r, out == gRects[2]);
721 float out = 0.0f;
722 p.eval(1, &in, &out);
723 REPORTER_ASSERT(r, out == expected);
911 float out;
912 p.eval(1, &out);
913 REPORTER_ASSERT(r, out == 5.0);
969 float out[4];
970 p.eval(1, u.buf.data(), &out[0], &out[1], &out[2], &out[3]);
971 REPORTER_ASSERT(r, out[0] == 8.0);
972 REPORTER_ASSERT(r, out[1] == 1.0);
973 REPORTER_ASSERT(r, out[2] == 2.0);
974 REPORTER_ASSERT(r, out[3] == 4.0);