Searched refs:pyramid_width (Results 1 – 1 of 1) sorted by relevance
144 static INLINE int max_pyramid_height_from_width(int pyramid_width) { in max_pyramid_height_from_width() argument145 if (pyramid_width > 12) return 4; in max_pyramid_height_from_width()146 if (pyramid_width > 6) return 3; in max_pyramid_height_from_width()147 if (pyramid_width > 3) return 2; in max_pyramid_height_from_width()148 if (pyramid_width > 1) return 1; in max_pyramid_height_from_width()