Lines Matching full:src_height
108 int32_t src_height = static_cast<int>(GetHeight());
115 src_width, src_height) == 0;
165 size_t src_height = GetHeight();
166 if (width == src_width && height == src_height) {
176 if (src_width * height > src_height * width) {
178 src_width = ROUNDTO2(src_height * width / height);
183 } else if (src_width * height < src_height * width) {
185 src_height = src_width * height / width;
187 static_cast<int32_t>((GetHeight() - src_height) >> 2);
198 static_cast<int>(src_width), static_cast<int>(src_height),