Searched refs:scan_max (Results 1 - 1 of 1) sorted by relevance

/external/valgrind/memcheck/
H A Dmc_leakcheck.c636 Addr scan_max; local
647 scan_max = ptr + VTABLE_MAX_CHECK*sizeof(Addr);
648 // If ptr is near the end of seg, avoid scan_max exceeding the end of seg:
649 if (scan_max > seg->end - sizeof(Addr))
650 scan_max = seg->end - sizeof(Addr);
651 for (scan = ptr; scan <= scan_max; scan+=sizeof(Addr)) {

Completed in 84 milliseconds