Lines Matching defs:factor
505 // into. "factor" is the number of frames to draw on one row. There will be
506 // up to "factor" rows as well.
508 const int factor = sk_float_ceil2int(root);
551 const int xTranslate = (i % factor) * decodeInfo.width();
552 const int yTranslate = (i / factor) * decodeInfo.height();
798 // in a grid. The grid will be roughly square, with "factor" frames per
799 // row and up to "factor" rows.
802 const int factor = sk_float_ceil2int(root);
806 imageSize.fWidth = imageSize.fWidth * factor;
807 imageSize.fHeight = imageSize.fHeight * sk_float_ceil2int((float) count / (float) factor);