reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
600 uptr origin_ptr = MEM_TO_ORIGIN(aligned);
projects/compiler-rt/lib/msan/msan_allocator.cpp 41 uptr origin_p = MEM_TO_ORIGIN(p);
projects/compiler-rt/lib/msan/msan_linux.cpp91 CHECK(MEM_IS_ORIGIN(MEM_TO_ORIGIN(addr))); 92 CHECK_EQ(MEM_TO_ORIGIN(addr), SHADOW_TO_ORIGIN(MEM_TO_SHADOW(addr))); 96 CHECK(MEM_IS_ORIGIN(MEM_TO_ORIGIN(addr))); 97 CHECK_EQ(MEM_TO_ORIGIN(addr), SHADOW_TO_ORIGIN(MEM_TO_SHADOW(addr))); 101 CHECK(MEM_IS_ORIGIN(MEM_TO_ORIGIN(addr))); 102 CHECK_EQ(MEM_TO_ORIGIN(addr), SHADOW_TO_ORIGIN(MEM_TO_SHADOW(addr)));projects/compiler-rt/lib/msan/msan_poisoning.cpp
53 *(u32 *)MEM_TO_ORIGIN(beg) = o; 67 *(u32 *)MEM_TO_ORIGIN(end) = o; 76 u32 *src = (u32 *)MEM_TO_ORIGIN(s); 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), 91 REAL(memcpy)((void *)MEM_TO_ORIGIN(beg), (void *)MEM_TO_ORIGIN(s), 151 uptr x = MEM_TO_ORIGIN((uptr)dst);