Home | History | Annotate | Download | only in safe_browsing

Lines Matching refs:c_end

317   // |c_end| points to the original endpoint, while |c_out| points to the
319 typename CT::iterator c_end = container->begin() + c_size;
323 while (c_end != container->begin() && end != beg) {
324 if (less(*(c_end - 1), *(end - 1))) {
327 *(--c_out) = *(--c_end);
334 DCHECK(c_end == container->begin());
337 DCHECK_EQ(c_out - c_end, end - beg);