Lines Matching defs:value
19 // We create Ops that write a value into a range of a buffer. We create ranges from
21 // times (with a different value written by each of the repeats).
60 // Within a's range we have one value each other op, but not one for a itself.
100 static GrOp::Owner Make(GrRecordingContext* context, int value, const Range& range,
102 return GrOp::Make<TestOp>(context, value, range, result, combinable);
120 TestOp(int value, const Range& range, int result[], const Combinable* combinable)
122 fValueRanges.push_back({value, range});
231 int value = permutation[i];
234 int j = value % (kNumRanges * kNumOpPositions);
238 auto op = TestOp::Make(dContext.get(), value, range, result, &combinable);