Lines Matching defs:height

709  * Interface for objects that have a width and height (planar capacity).
716 inline uint32_t height() const { return mHeight; }
719 inline _C2PlanarCapacityAspect(uint32_t width, uint32_t height)
720 : mWidth(width), mHeight(height) { }
724 mHeight(parent == nullptr ? 0 : parent->height()) { }
744 inline C2Rect(uint32_t width, uint32_t height)
745 : C2Rect(width, height, 0, 0) { }
747 inline C2Rect(uint32_t width, uint32_t height, uint32_t left, uint32_t top)
748 : mLeft(left), mTop(top), mWidth(width), mHeight(height) { }
832 uint32_t mVertSubsampling; // subsampling compared to height
837 inline ssize_t minOffset(uint32_t width, uint32_t height) {
842 if (height > 0 && mRowInc < 0) {
843 offs += mRowInc * (ssize_t)(height - 1);
848 inline ssize_t maxOffset(uint32_t width, uint32_t height, uint32_t allocatedDepth) {
853 if (height > 0 && mRowInc > 0) {
854 offs += mRowInc * (ssize_t)(height - 1);
901 * Sets crop to crop intersected with [(0,0) .. (width, height)]
1499 * Allocates a 2D allocation of given |width|, |height|, |format| and |usage|. If successful,
1504 * \param height the height of requested allocation (the allocation could be slightly
1520 * \retval C2_BAD_VALUE width, height, format or usage are not supported (invalid) (caller error)
1525 uint32_t width __unused, uint32_t height __unused, uint32_t format __unused,
1629 * Allocates a 2D graphic block of given |width|, |height|, |format| and |usage|. If successful,
1634 * \param height the height of requested allocation (the allocation could be slightly
1650 * \retval C2_BAD_VALUE width, height, format or usage are not supported (invalid) (caller error)
1655 uint32_t width __unused, uint32_t height __unused, uint32_t format __unused,
1745 inline uint32_t height() const { return mHeight; }