Lines Matching defs:height
73 /** Return the height in pixels of a 64-byte microtile. */
95 * @height: Height in pixels of the miplevel
99 size_is_lt(uint32_t width, uint32_t height, int cpp)
102 height <= 4 * utile_height(cpp));
165 uint32_t width, uint32_t height, uint8_t cpp)
182 if (width > 4096 || height > 4096) {
184 width, height);
191 aligned_height = height;
195 aligned_height = round_up(height, utile_h * 8);
199 aligned_height = round_up(height, utile_h);
212 width, height,
589 uint32_t height = VC4_GET_FIELD(p1, VC4_TEX_P1_HEIGHT);
617 if (height == 0)
618 height = 2048;
667 height = (height + 3) >> 2;
684 if (size_is_lt(width, height, cpp))
691 tiling_format, width, height, cpp)) {
700 uint32_t level_height = max(height >> i, 1u);