Searched refs:fullSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java670 Bitmap fullSize = null;
676 fullSize = BitmapFactory.decodeStream(is, null, options);
679 if (fullSize != null) {
681 scaleDownSampleSize = bounds.x / fullSize.getWidth();
689 if (roundedTrueCrop.width() > fullSize.getWidth()) {
691 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
693 if (roundedTrueCrop.right > fullSize.getWidth()) {
700 if (roundedTrueCrop.height() > fullSize.getHeight()) {
702 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
704 if (roundedTrueCrop.bottom > fullSize
[all...]
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java431 Bitmap fullSize = BitmapFactory.decodeStream(is, null, null);
432 return new BitmapDrawable(resources, fullSize);
499 Bitmap fullSize = null;
505 fullSize = BitmapFactory.decodeStream(is, null, options);
507 if (fullSize != null) {
508 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp570 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel; local
573 if (fullSize != count) {
575 fullSize);
587 fullSize);
621 PRIu32, fullSize);
704 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel; local
706 if (fullSize != count) {
708 fullSize);
718 if (stream.write(mPixelBytes, mOffset, fullSize) != OK || mEnv->ExceptionCheck()) {
2038 size_t fullSize local
2119 size_t fullSize = rStride * uHeight; local
[all...]
/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp693 size_t fullSize = packetSize; local
695 fullSize += buffer->range_length();
697 MediaBuffer *tmp = new MediaBuffer(fullSize);
718 buffer->set_range(0, fullSize);

Completed in 132 milliseconds