Home | History | Annotate | Download | only in util

Lines Matching refs:reqWidth

109      * @param reqWidth The requested width of the resulting bitmap
116 int reqWidth, int reqHeight, ImageCache cache) {
125 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
142 * @param reqWidth The requested width of the resulting bitmap
149 int reqWidth, int reqHeight, ImageCache cache) {
157 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
173 * @param reqWidth The requested width of the resulting bitmap
180 FileDescriptor fileDescriptor, int reqWidth, int reqHeight, ImageCache cache) {
188 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
227 * @param reqWidth The requested width of the resulting bitmap
232 int reqWidth, int reqHeight) {
239 if (height > reqHeight || width > reqWidth) {
247 && (halfWidth / inSampleSize) > reqWidth) {
260 final long totalReqPixelsCap = reqWidth * reqHeight * 2;