Lines Matching defs:width
27 void fill_transfer_data(int left, int top, int width, int height, int rowBytes,
35 for (int i = left; i < left + width; ++i) {
36 auto r = (unsigned int)(256.f*((i - left) / (float)width));
75 int w = texture->width();
232 const int width = 10;
241 if (left + width > tex->width()) {
246 SkASSERT(left + width <= tex->width());
251 fill_transfer_data(left, top, width, height, srcRowBytes, allowedSrc.fColorType,
258 SkIRect::MakeXYWH(left, top, width, height),