HomeSort by relevance Sort by last modified time
    Searched defs:old_mid (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/test/asan/TestCases/
contiguous_container.cc 15 char *old_mid = 0; local
20 old_mid = mid;
22 __sanitizer_annotate_contiguous_container(beg, end, old_mid, mid);
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 336 uptr old_mid = reinterpret_cast<uptr>(old_mid_p); local
339 if (!(beg <= old_mid && beg <= new_mid && old_mid <= end && new_mid <= end &&
342 ReportBadParamsToAnnotateContiguousContainer(beg, end, old_mid, new_mid,
348 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity);
349 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity);
350 uptr d1 = RoundDownTo(old_mid, granularity);
351 // uptr d2 = RoundUpTo(old_mid, granularity);
359 // CHECK_EQ(*(u8*)MemToShadow(d1), old_mid - d1);

Completed in 144 milliseconds