Home | History | Annotate | Download | only in base

Lines Matching defs:src_width

90   int32 src_width = static_cast<int>(GetWidth());
98 src_width, src_height) == 0;
128 size_t src_width = GetWidth();
130 if (width == src_width && height == src_height) {
140 if (src_width * height > src_height * width) {
142 src_width = ROUNDTO2(src_height * width / height);
143 int32 iwidth_offset = ROUNDTO2((GetWidth() - src_width) / 2);
147 } else if (src_width * height < src_height * width) {
149 src_height = src_width * height / width;
164 static_cast<int>(src_width), static_cast<int>(src_height),