Lines Matching defs:out
159 SkIRect out = {0, 0, index + 1, index + 1};
160 return out;
164 SkIRect out;
165 out.fLeft = index % GRID_WIDTH;
166 out.fTop = index / GRID_WIDTH;
167 out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
168 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
169 return out;
172 SkIRect out;
173 out.fLeft = index / GRID_WIDTH;
174 out.fTop = index % GRID_WIDTH;
175 out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
176 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
177 return out;
181 SkIRect out;
182 out.fLeft = rand.nextS() % GENERATE_EXTENTS;
183 out.fTop = rand.nextS() % GENERATE_EXTENTS;
184 out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 5);
185 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 5);
186 return out;