Home | History | Annotate | Download | only in bench

Lines Matching defs:out

99     SkRect out;
100 out.fLeft = SkIntToScalar(index % GRID_WIDTH);
101 out.fTop = SkIntToScalar(index / GRID_WIDTH);
102 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3);
103 out.fBottom = out.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3);
104 return out;
107 SkRect out;
108 out.fLeft = SkIntToScalar(index / GRID_WIDTH);
109 out.fTop = SkIntToScalar(index % GRID_WIDTH);
110 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3);
111 out.fBottom = out.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3);
112 return out;
116 SkRect out;
117 out.fLeft = rand.nextRangeF(0, GENERATE_EXTENTS);
118 out.fTop = rand.nextRangeF(0, GENERATE_EXTENTS);
119 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/5);
120 out.fBottom = out.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/5);
121 return out;