Searched refs:fastSizeList (Results 1 – 1 of 1) sorted by relevance
1374 Size[] fastSizeList = null; in getAvailableSizesForFormatChecked() local1377 fastSizeList = config.getOutputSizes(format); in getAvailableSizesForFormatChecked()1382 if (fastSizeList != null && slowSizeList != null) { in getAvailableSizesForFormatChecked()1383 sizes = new Size[slowSizeList.length + fastSizeList.length]; in getAvailableSizesForFormatChecked()1384 System.arraycopy(fastSizeList, 0, sizes, 0, fastSizeList.length); in getAvailableSizesForFormatChecked()1385 … System.arraycopy(slowSizeList, 0, sizes, fastSizeList.length, slowSizeList.length); in getAvailableSizesForFormatChecked()1386 } else if (fastSizeList != null) { in getAvailableSizesForFormatChecked()1387 sizes = fastSizeList; in getAvailableSizesForFormatChecked()