| /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/ |
| Drm.h | 63 bool getPhysicalSize(int device, uint32_t& width, uint32_t& height); 64 bool getDisplayResolution(int device, uint32_t& width, uint32_t& height);
|
| /hardware/intel/img/hwcomposer/moorefield_hdmi/common/buffers/ |
| BufferManager.cpp | 221 uint32_t BufferManager::allocFrameBuffer(int width, int height, int *stride) 230 if (!width || !height || !stride) { 235 ILOGTRACE("size of frame buffer to create: %dx%d", width, height); 240 height, 312 uint32_t BufferManager::allocGrallocBuffer(uint32_t width, uint32_t height, uint32_t format, uint32_t usage) 321 if (!width || !height) { 326 ILOGTRACE("size of graphic buffer to create: %dx%d", width, height); 332 height,
|
| /hardware/intel/img/hwcomposer/moorefield_hdmi/include/ |
| BufferManager.h | 57 virtual uint32_t allocFrameBuffer(int width, int height, int *stride); 60 uint32_t allocGrallocBuffer(uint32_t width, uint32_t height, uint32_t format, uint32_t usage);
|
| /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/ |
| RotationBufferProvider.h | 53 bool isContextChanged(int width, int height, int transform); 55 uint32_t createWsbmBuffer(int width, int height, void **buf);
|
| /hardware/intel/img/psb_video/src/ |
| psb_surface.h | 84 int width, int height, int fourcc, unsigned int flags, 121 int width, int height,
|
| /hardware/libhardware/include/hardware/ |
| fb.h | 52 const uint32_t height; member in struct:framebuffer_device_t 104 * return -EINVAL if width or height <=0, or if left or top < 0 107 int left, int top, int width, int height); 113 * buffer must be the same width and height as the display and must NOT
|
| /hardware/qcom/camera/QCamera2/stack/mm-lib2d-interface/inc/ |
| mm_lib2d.h | 78 * @height: defines height in pixels 87 uint32_t height; member in struct:mm_lib2d_rgb_buffer_t 97 * @height: defines height in pixels 112 uint32_t height; member in struct:mm_lib2d_yuv_buffer_t
|
| /hardware/qcom/display/msm8226/libhwcomposer/ |
| hwc_delta_panel.cpp | 55 * height - Input image height 57 void deltaPanelRendering(uint8_t *pImage, int width, int height) 72 for(y = 1; y < (height - 1) && y < TABLE_SIZE; y++)
|
| /hardware/qcom/display/msm8996/sdm/libs/hwc/ |
| hwc_display_primary.h | 73 DisplayError SetMixerResolution(uint32_t width, uint32_t height); 74 DisplayError GetMixerResolution(uint32_t *width, uint32_t *height);
|
| /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/inc/ |
| omx_video_encoder.h | 90 bool dev_is_video_session_supported(OMX_U32 width, OMX_U32 height); 92 OMX_U32 height);
|
| /packages/apps/Camera2/src/com/android/camera/ |
| Thumbnail.java | 59 int height = bitmap.getHeight(); local 63 int h = Math.round(scale * height);
|
| /packages/apps/Camera2/src/com/android/camera/session/ |
| StackSaverImpl.java | 62 public Uri saveStackedImage(File inputImagePath, String title, int width, int height, 73 mGpsLocation, imageOrientation, fileLength, filePath, width, height,
|
| /packages/apps/Gallery2/jni/filters/ |
| bwfilter.c | 20 void JNIFUNCF(ImageFilterBwFilter, nativeApplyFilter, jobject bitmap, jint width, jint height, jint rw, jint gw, jint bw) 38 int len = width * height * 4;
|
| gradient.c | 19 void JNIFUNCF(ImageFilter, nativeApplyGradientFilter, jobject bitmap, jint width, jint height, 35 int len = width * height * 4;
|
| hue.c | 19 void JNIFUNCF(ImageFilterHue, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloatArray matrix) 25 int len = width * height * 4;
|
| kmeans.cc | 27 * small_ds_bitmap width/height < 64 pixels. 28 * large_ds_bitmap width/height < 512 pixels 33 void JNIFUNCF(ImageFilterKMeans, nativeApplyFilter, jobject bitmap, jint width, jint height, 70 len = width * height * 4;
|
| saturated.c | 19 void JNIFUNCF(ImageFilterSaturated, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat saturation) 24 int len = width * height * 4;
|
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
| CategoryAdapter.java | 61 public void setItemHeight(int height) { 62 mItemHeight = height; 100 int height = mItemHeight; local 105 height = height / 2; 110 height = height / 2; 113 new ListView.LayoutParams(width, height));
|
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
| ImageFilterGrad.java | 115 int height = getInPixelsAllocation().getType().getY(); local 117 mScript.set_inputHeight(height); 128 int height = getInPixelsAllocation().getType().getY(); local 129 Matrix m = getOriginalToScreenMatrix(width, height); 162 int height = in.getType().getY(); local 168 for (ty = 0; ty < height; ty += STRIP_SIZE) { 170 if (endy > height) { 171 endy = height;
|
| /packages/apps/Gallery2/src/com/android/photos/drawables/ |
| AutoThumbnailDrawable.java | 71 public void setImage(T data, int width, int height) { 75 mImageHeight = height; 133 int vheight = mBounds.height(); 157 int vheight = mBounds.height(); 240 int sampleSize, width, height; 246 height = mImageHeight; 251 sampleSize = calculateSampleSizeLocked(width, height); 271 mOptions.inBitmap = sBitmapPool.get(width / sampleSize, height / sampleSize);
|
| /packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
| MosaicRendererSurfaceViewRenderer.java | 48 public void onSurfaceChanged(GL10 gl, int width, int height) { 49 MosaicRenderer.reset(width, height, mIsLandscapeOrientation);
|
| /packages/apps/Messaging/src/com/android/messaging/util/ |
| GifTranscoder.java | 78 public static boolean canBeTranscoded(int width, int height) { 82 return width >= MIN_WIDTH && height >= MIN_HEIGHT;
|
| /packages/apps/Settings/src/com/android/settings/applications/ |
| SpacePreference.java | 28 * A blank preference that has a specified height by android:layout_height. It can be used 52 public void setHeight(int height) { 53 mHeight = height;
|
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/ |
| EmojiCategoryPageIndicatorView.java | 61 final float height = getHeight(); local 67 final float bottom = height * BOTTOM_MARGIN_RATIO;
|
| /packages/services/Car/car-lib/src/android/car/cluster/renderer/ |
| DisplayConfiguration.java | 83 && mSecondaryRegion.height() > mPrimaryRegion.height();
|