Searched refs:fastSizeList (Results 1 – 1 of 1) sorted by relevance
1412 Size[] fastSizeList = null; in getAvailableSizesForFormatChecked() local1415 fastSizeList = config.getOutputSizes(format); in getAvailableSizesForFormatChecked()1420 if (fastSizeList != null && slowSizeList != null) { in getAvailableSizesForFormatChecked()1421 sizes = new Size[slowSizeList.length + fastSizeList.length]; in getAvailableSizesForFormatChecked()1422 System.arraycopy(fastSizeList, 0, sizes, 0, fastSizeList.length); in getAvailableSizesForFormatChecked()1423 … System.arraycopy(slowSizeList, 0, sizes, fastSizeList.length, slowSizeList.length); in getAvailableSizesForFormatChecked()1424 } else if (fastSizeList != null) { in getAvailableSizesForFormatChecked()1425 sizes = fastSizeList; in getAvailableSizesForFormatChecked()