Searched refs:fastSizeList (Results 1 – 1 of 1) sorted by relevance
1618 Size[] fastSizeList = null; in getAvailableSizesForFormatChecked() local1621 fastSizeList = config.getOutputSizes(format); in getAvailableSizesForFormatChecked()1626 if (fastSizeList != null && slowSizeList != null) { in getAvailableSizesForFormatChecked()1627 sizes = new Size[slowSizeList.length + fastSizeList.length]; in getAvailableSizesForFormatChecked()1628 System.arraycopy(fastSizeList, 0, sizes, 0, fastSizeList.length); in getAvailableSizesForFormatChecked()1629 … System.arraycopy(slowSizeList, 0, sizes, fastSizeList.length, slowSizeList.length); in getAvailableSizesForFormatChecked()1630 } else if (fastSizeList != null) { in getAvailableSizesForFormatChecked()1631 sizes = fastSizeList; in getAvailableSizesForFormatChecked()