HomeSort by: relevance | last modified time | path
    Searched refs:GetBlockBegin (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_combined.h 135 void *GetBlockBegin(const void *p) {
137 return primary_.GetBlockBegin(p);
138 return secondary_.GetBlockBegin(p);
141 // This function does the same as GetBlockBegin, but is much faster.
145 return primary_.GetBlockBegin(p);
sanitizer_allocator_secondary.h 166 return GetBlockBegin(p) != nullptr;
175 // Too slow: CHECK_EQ(p, GetBlockBegin(p));
183 void *GetBlockBegin(const void *ptr) {
214 // This function does the same as GetBlockBegin, but is much faster.
sanitizer_allocator_primary32.h 194 void *GetBlockBegin(const void *p) {
252 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_combined.h 129 void *GetBlockBegin(const void *p) {
131 return primary_.GetBlockBegin(p);
132 return secondary_.GetBlockBegin(p);
135 // This function does the same as GetBlockBegin, but is much faster.
139 return primary_.GetBlockBegin(p);
sanitizer_allocator_secondary.h 165 return GetBlockBegin(p) != nullptr;
174 // Too slow: CHECK_EQ(p, GetBlockBegin(p));
182 void *GetBlockBegin(const void *ptr) const {
216 // This function does the same as GetBlockBegin, but is much faster.
sanitizer_allocator_primary32.h 206 void *GetBlockBegin(const void *p) {
264 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_combined.h 129 void *GetBlockBegin(const void *p) {
131 return primary_.GetBlockBegin(p);
132 return secondary_.GetBlockBegin(p);
135 // This function does the same as GetBlockBegin, but is much faster.
139 return primary_.GetBlockBegin(p);
sanitizer_allocator_secondary.h 165 return GetBlockBegin(p) != nullptr;
174 // Too slow: CHECK_EQ(p, GetBlockBegin(p));
182 void *GetBlockBegin(const void *ptr) const {
216 // This function does the same as GetBlockBegin, but is much faster.
sanitizer_allocator_primary32.h 206 void *GetBlockBegin(const void *p) {
264 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_debugging.cc 202 void *block_begin = a->GetBlockBegin((void *)addr);
207 region_address = (uptr)allocator()->GetBlockBegin((void *)addr);
242 void *block_begin = a->GetBlockBegin((void *)addr);
tsan_external.cc 104 void *block_begin = a->GetBlockBegin((void *)addr);
tsan_mman.cc 372 return allocator()->GetBlockBegin(p) != 0;
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_debugging.cpp 207 void *block_begin = a->GetBlockBegin((void *)addr);
212 region_address = (uptr)allocator()->GetBlockBegin((void *)addr);
247 void *block_begin = a->GetBlockBegin((void *)addr);
tsan_external.cpp 105 void *block_begin = a->GetBlockBegin((void *)addr);
tsan_mman.cpp 387 return allocator()->GetBlockBegin(p) != 0;
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_debugging.cpp 209 void *block_begin = a->GetBlockBegin((void *)addr);
214 region_address = (uptr)allocator()->GetBlockBegin((void *)addr);
249 void *block_begin = a->GetBlockBegin((void *)addr);
tsan_external.cpp 112 void *block_begin = a->GetBlockBegin((void *)addr);
tsan_mman.cpp 360 void *beg = allocator()->GetBlockBegin(p);
457 return allocator()->GetBlockBegin(p) != 0;
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_allocator.cpp 406 void *block = allocator.GetBlockBegin(reinterpret_cast<void*>(address));
419 const void *beg = allocator.GetBlockBegin(untagged_ptr);
434 const void *beg = allocator.GetBlockBegin(untagged_ptr);
634 uptr chunk = reinterpret_cast<uptr>(__hwasan::allocator.GetBlockBegin(p));
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 224 CHECK_EQ(x, a->GetBlockBegin(x));
225 CHECK_EQ(x, a->GetBlockBegin(x + size - 1));
252 // Check that GetBlockBegin never crashes.
256 Ident(a->GetBlockBegin(reinterpret_cast<void *>(x)));
382 // Make sure we correctly compute GetBlockBegin() w/o overflow.
385 void *beg = a->GetBlockBegin(x);
603 CHECK_EQ(p, a.GetBlockBegin(p));
604 CHECK_EQ(p, a.GetBlockBegin(p + size - 1));
605 CHECK_EQ(p, a.GetBlockBegin(p + size / 2));
614 // Regression test for boundary condition in GetBlockBegin()
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_allocator.cpp 338 void *block = allocator.GetBlockBegin(reinterpret_cast<void*>(address));
349 const void *beg = allocator.GetBlockBegin(untagged_ptr);
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_allocator.cpp 154 void *beg = allocator.GetBlockBegin(p);
335 void *chunk = allocator.GetBlockBegin(p);
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_allocator.cc 282 void *chunk = allocator.GetBlockBegin(p);
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_allocator.cpp 303 void *chunk = allocator.GetBlockBegin(p);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_allocator.cc 249 const void *beg = allocator.GetBlockBegin(p);

Completed in 62 milliseconds

1 2