OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fullSize
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
MostRecentImageSaver.java
63
MetadataImage
fullSize
= getLastImage();
64
if (
fullSize
!= null) {
67
mFullSizeImages.remove(
fullSize
.getTimestamp());
72
ImageProxy thumbnail = getThumbnail(
fullSize
.getTimestamp());
79
mSingleImageSaver.saveAndCloseImage(
fullSize
, Optional.fromNullable(thumbnail),
80
fullSize
.getMetadata());
/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
243
final float
fullSize
= (mIsPortrait ? (float) getWidth() : (float) getHeight());
249
fullSize
-mAnimateFrom.width()/2.0f);
323
ValueAnimator.ofFloat(
fullSize
-mAnimateFrom.width()/2.0f,
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapCropTask.java
284
Bitmap
fullSize
= null;
290
fullSize
= BitmapFactory.decodeStream(is, null, options);
293
if (
fullSize
!= null) {
295
scaleDownSampleSize = bounds.x /
fullSize
.getWidth();
303
if (roundedTrueCrop.width() >
fullSize
.getWidth()) {
305
roundedTrueCrop.right = roundedTrueCrop.left +
fullSize
.getWidth();
307
if (roundedTrueCrop.right >
fullSize
.getWidth()) {
309
roundedTrueCrop.offset(-(roundedTrueCrop.right -
fullSize
.getWidth()), 0);
311
if (roundedTrueCrop.height() >
fullSize
.getHeight()) {
313
roundedTrueCrop.bottom = roundedTrueCrop.top +
fullSize
.getHeight()
[
all
...]
/frameworks/av/media/libstagefright/
OggExtractor.cpp
696
size_t
fullSize
= packetSize;
698
fullSize
+= buffer->range_length();
700
MediaBuffer *tmp = new MediaBuffer(
fullSize
);
722
buffer->set_range(0,
fullSize
);
[
all
...]
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java
670
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
.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,
/device/google/contexthub/firmware/src/
seos.c
558
int32_t
fullSize
= segDataSize + sizeof(seg); // without footer or padding
584
footerLen = (-
fullSize
) & 3;
589
.crc = ~crc32(storageSeg,
fullSize
, ~0),
596
ret = osWriteShared((uint8_t*)storageSeg +
fullSize
, footer, footerLen);
[
all
...]
/frameworks/base/core/java/android/app/
WallpaperManager.java
519
Bitmap
fullSize
= BitmapFactory.decodeStream(is, null, null);
520
return new BitmapDrawable(resources,
fullSize
);
591
Bitmap
fullSize
= null;
596
fullSize
= BitmapFactory.decodeStream(is, null, options);
597
if (
fullSize
!= null) {
598
crop = Bitmap.createBitmap(
fullSize
, roundedTrueCrop.left,
[
all
...]
/external/opencv3/modules/video/src/
lkpyramid.cpp
[
all
...]
/frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp
578
uint32_t
fullSize
= mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
581
if (
fullSize
!= count) {
583
fullSize
);
595
fullSize
);
629
PRIu32,
fullSize
);
712
uint32_t
fullSize
= mWidth * mHeight * mBytesPerSample * mSamplesPerPixel;
714
if (
fullSize
!= count) {
716
fullSize
);
726
if (stream.write(mPixelBytes, mOffset,
fullSize
) != OK || mEnv->ExceptionCheck()) {
[
all
...]
Completed in 417 milliseconds