Searched refs:subHeight (Results 1 – 4 of 4) sorted by relevance
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/ |
D | ChromaFormat.java | 36 private int subHeight; field in ChromaFormat 38 public ChromaFormat(int id, int subWidth, int subHeight) { in ChromaFormat() argument 41 this.subHeight = subHeight; in ChromaFormat() 66 return subHeight; in getSubHeight() 74 " subHeight=" + subHeight + in toString()
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | PercentFrameLayout.java | 79 final int subHeight = height * heightPercent / 100; in onLayout() local 90 final int childTop = subTop + (subHeight - childHeight) / 2; in onLayout()
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowBitmapTest.java | 352 int subHeight = 4; in shouldGetPixelsFromSubsetOfBitmap() local 358 for (int y0 = y; y0 < y + subHeight; y0++) { in shouldGetPixelsFromSubsetOfBitmap() 365 int[] pixels = new int[offset + subWidth * subHeight]; in shouldGetPixelsFromSubsetOfBitmap() 366 bitmap.getPixels(pixels, offset, subWidth, x, y, subWidth, subHeight); in shouldGetPixelsFromSubsetOfBitmap() 371 for (int y0 = 0; y0 < subHeight; y0++) { in shouldGetPixelsFromSubsetOfBitmap()
|
/external/mesa3d/src/mesa/main/ |
D | teximage.c | 1140 GLsizei subHeight, in error_check_subtexture_negative_dimensions() argument 1150 if (dims > 1 && subHeight < 0) { in error_check_subtexture_negative_dimensions() 1151 _mesa_error(ctx, GL_INVALID_VALUE, "%s(height=%d)", func, subHeight); in error_check_subtexture_negative_dimensions() 1173 GLsizei subWidth, GLsizei subHeight, in error_check_subtexture_dimensions() argument 1198 if (yoffset + subHeight > (GLint) destImage->Height) { in error_check_subtexture_dimensions() 1200 func, yoffset, subHeight, destImage->Height); in error_check_subtexture_dimensions() 1257 if ((subHeight % bh != 0) && in error_check_subtexture_dimensions() 1258 (yoffset + subHeight != (GLint) destImage->Height)) { in error_check_subtexture_dimensions() 1260 "%s(height = %d)", func, subHeight); in error_check_subtexture_dimensions()
|