Home | History | Annotate | Download | only in memcheck

Lines Matching refs:searched

680 // 1. Leak check mode (searched == 0).
701 // 2. Search ptr mode (searched != 0).
704 // In such a case, lc_scan_memory just scans [start..start+len[ for pointers to searched
705 // and outputs the places where searched is found. It does not recursively scans the
709 Addr searched, SizeT szB)
794 if (UNLIKELY(searched)) {
795 if (addr >= searched && addr < searched + szB) {
796 if (addr == searched)
797 VG_(umsg)("*%#lx points at %#lx\n", ptr, searched);
800 ptr, (long unsigned) addr - searched, searched);
831 /*searched*/ 0, 0);
1268 // If searched = 0, scan memory root set, pushing onto the mark stack the blocks
1270 // Otherwise (searched != 0), scan the memory root set searching for ptr pointing
1271 // inside [searched, searched+szB[.
1272 static void scan_memory_root_set(Addr searched, SizeT szB)
1319 searched, szB);
1469 scan_memory_root_set(/*searched*/0, 0);