Home | History | Annotate | Download | only in memcheck

Lines Matching full:scan_max

630    Addr scan_max;
641 scan_max = ptr + VTABLE_MAX_CHECK*sizeof(Addr);
642 // If ptr is near the end of seg, avoid scan_max exceeding the end of seg:
643 if (scan_max > seg->end - sizeof(Addr))
644 scan_max = seg->end - sizeof(Addr);
645 for (scan = ptr; scan <= scan_max; scan+=sizeof(Addr)) {