reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/msan/msan_poisoning.cpp
   49   if (beg < d) {
   50     u32 o = GetOriginIfPoisoned((uptr)src, d - beg);
   53       *(u32 *)MEM_TO_ORIGIN(beg) = o;
   55     beg += 4;
   60   if (end < beg) return;
   71   if (beg < end) {
   78       u32 *src_end = (u32 *)MEM_TO_ORIGIN(s + (end - beg));
   79       u32 *dst = (u32 *)MEM_TO_ORIGIN(beg);
   91       REAL(memcpy)((void *)MEM_TO_ORIGIN(beg), (void *)MEM_TO_ORIGIN(s),
   92                    end - beg);