Home | History | Annotate | Download | only in memcheck

Lines Matching refs:searched

915 // 1. Leak check mode (searched == 0).
936 // 2. Search ptr mode (searched != 0).
940 // to searched and outputs the places where searched is found.
945 Addr searched, SizeT szB)
1047 if (UNLIKELY(searched)) {
1048 if (addr >= searched && addr < searched + szB) {
1049 if (addr == searched) {
1050 VG_(umsg)("*%#lx points at %#lx\n", ptr, searched);
1057 ptr, (long unsigned) addr - searched, searched);
1104 /*searched*/ 0, 0);
1577 // If searched = 0, scan memory root set, pushing onto the mark stack the blocks
1579 // Otherwise (searched != 0), scan the memory root set searching for ptr
1580 // pointing inside [searched, searched+szB[.
1581 static void scan_memory_root_set(Addr searched, SizeT szB)
1629 searched, szB);
1781 scan_memory_root_set(/*searched*/0, 0);