HomeSort by relevance Sort by last modified time
    Searched defs:fullSize (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGeneratorTest.cpp 42 SkISize fullSize() { return SkISize::Make(100, 100); }
57 m_generator = ImageFrameGenerator::create(fullSize(), m_data, false);
93 m_generator->setImageDecoderFactory(MockImageDecoderFactory::create(this, fullSize()));
187 EXPECT_TRUE(ImageDecodingStore::instance()->lockDecoder(m_generator.get(), fullSize(), &tempDecoder));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
NativeImageSkia.cpp 332 unsigned long long fullSize = static_cast<unsigned long long>(scaledImageSize.width()) * static_cast<unsigned long long>(scaledImageSize.height());
351 return fragmentSize > fullSize / 4;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 55 unsigned int fullSize = typeSizeof(fTy);
66 t[j] = bld->getSSA(fullSize);
83 r[j] = bld->getSSA(fullSize);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 55 unsigned int fullSize = typeSizeof(fTy);
66 t[j] = bld->getSSA(fullSize);
83 r[j] = bld->getSSA(fullSize);
  /packages/apps/Camera2/src/com/android/camera/widget/
ModeOptions.java 206 final float fullSize = (mIsPortrait ? (float) getWidth() : (float) getHeight());
212 fullSize-mAnimateFrom.width()/2.0f);
286 ValueAnimator.ofFloat(fullSize-mAnimateFrom.width()/2.0f,
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 488 size_t fullSize = packetSize;
490 fullSize += buffer->range_length();
492 MediaBuffer *tmp = new MediaBuffer(fullSize);
513 buffer->set_range(0, fullSize);
  /frameworks/base/core/java/android/app/
WallpaperManager.java 418 Bitmap fullSize = BitmapFactory.decodeStream(is, null, null);
419 return new BitmapDrawable(resources, fullSize);
486 Bitmap fullSize = null;
492 fullSize = BitmapFactory.decodeStream(is, null, options);
494 if (fullSize != null) {
495 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 671 Bitmap fullSize = null;
677 fullSize = BitmapFactory.decodeStream(is, null, options);
680 if (fullSize != null) {
682 scaleDownSampleSize = bounds.x / fullSize.getWidth();
690 if (roundedTrueCrop.width() > fullSize.getWidth()) {
692 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
694 if (roundedTrueCrop.right > fullSize.getWidth()) {
701 if (roundedTrueCrop.height() > fullSize.getHeight()) {
703 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
705 if (roundedTrueCrop.bottom > fullSize.getHeight())
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 500 Bitmap fullSize = null;
502 fullSize = BitmapFactory.decodeStream(mInStream);
504 if (fullSize != null) {
505 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperCropActivity.java 678 Bitmap fullSize = null;
684 fullSize = BitmapFactory.decodeStream(is, null, options);
687 if (fullSize != null) {
689 scaleDownSampleSize = bounds.x / fullSize.getWidth();
697 if (roundedTrueCrop.width() > fullSize.getWidth()) {
699 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
701 if (roundedTrueCrop.right > fullSize.getWidth()) {
708 if (roundedTrueCrop.height() > fullSize.getHeight()) {
710 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
712 if (roundedTrueCrop.bottom > fullSize.getHeight())
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp 435 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
438 if (fullSize != count) {
440 fullSize);
452 fullSize);
486 PRIu32, fullSize);
569 uint32_t fullSize = mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
571 if (fullSize != count) {
573 fullSize);
582 if (stream.write(mPixelBytes, mOffset, fullSize) != OK || mEnv->ExceptionCheck()) {
    [all...]

Completed in 1087 milliseconds