Home | History | Annotate | Download | only in dib

Lines Matching refs:start_i

171     int start_i = floor(std::min(src_start, src_end));
173 start_i = std::max(start_i, src_min);
175 if (start_i > end_i) {
176 start_i = std::min(start_i, src_max - 1);
177 pixel_weights.m_SrcStart = start_i;
178 pixel_weights.m_SrcEnd = start_i;
181 pixel_weights.m_SrcStart = start_i;
183 for (int j = start_i; j <= end_i; ++j) {
195 size_t idx = j - start_i;