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));
161 uint32_t width, uint32_t height, uint8_t cpp)
174 if (width > 4096 || height > 4096) {
176 width, height);
183 aligned_height = height;
187 aligned_height = round_up(height, utile_h * 8);
191 aligned_height = round_up(height, utile_h);
204 width, height,
577 uint32_t height = VC4_GET_FIELD(p1, VC4_TEX_P1_HEIGHT);
605 if (height == 0)
606 height = 2048;
655 height = (height + 3) >> 2;
672 if (size_is_lt(width, height, cpp))
679 tiling_format, width, height, cpp)) {
688 uint32_t level_height = max(height >> i, 1u);