Searched defs:size2 (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DSizeAreaComparator.java38 public int compare(Camera.Size size, Camera.Size size2) { argument
40 checkNotNull(size2, "size2 must not be null");
42 if (size.equals(size2)) {
47 long width2 = size2.width;
49 long area2 = width2 * size2.height;
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DSizeAreaComparator.java37 public int compare(Size size, Size size2) { argument
39 checkNotNull(size2, "size2 must not be null");
41 if (size.equals(size2)) {
46 long width2 = size2.getWidth();
48 long area2 = width2 * size2.getHeight();
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraCapabilities.java251 public int compare(Size size1, Size size2) { argument
252 return (size1.width() == size2.width() ? size1.height() - size2.height() :
253 size1.width() - size2.width());
/frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
H A DAMRWB_E_SAMPLE.c66 int size2 = (int)fread(dst, sizeof(signed char), size,inFile); local
67 return size2;
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.cpp173 int64_t size2 = ((mMaxFileDurationLimitUs * bitRate * 6) / 1000 / 8000000); local
177 if (size > size2) {
178 size = size2;
182 size = size2;
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp793 size_t size2 = *rec2; local
795 if (size1 < size2) {
797 } else if (size1 > size2) {
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp596 int64_t size2 = local
601 if (size > size2) {
602 size = size2;
606 size = size2;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 284 milliseconds