OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PointerIsMine
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h
350
static bool
PointerIsMine
(const void *p) {
374
CHECK(
PointerIsMine
(p));
644
CHECK(
PointerIsMine
(p));
675
bool
PointerIsMine
(const void *p) {
684
CHECK(
PointerIsMine
(p));
695
CHECK(
PointerIsMine
(p));
[
all
...]
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc
106
CHECK(a->
PointerIsMine
(x));
107
CHECK(a->
PointerIsMine
(x + size - 1));
108
CHECK(a->
PointerIsMine
(x + size / 2));
135
if (a->
PointerIsMine
(reinterpret_cast<void *>(x)))
342
CHECK(a.
PointerIsMine
(allocated[i]));
348
CHECK(a.
PointerIsMine
(p));
364
CHECK(a.
PointerIsMine
(p));
365
CHECK(a.
PointerIsMine
(p + 2000));
374
CHECK(a.
PointerIsMine
(p));
446
CHECK(a->
PointerIsMine
(x))
[
all
...]
/external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc
81
// SecondaryAllocator::
PointerIsMine
() is slow and we have fallback on
83
if (PrimaryAllocator::
PointerIsMine
((void*)addr)) {
148
if (PrimaryAllocator::
PointerIsMine
((void*)addr)) {
tsan_rtl_report.cc
326
if (allocator()->
PointerIsMine
((void*)addr)
Completed in 189 milliseconds