OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetBlockBegin
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/tsan/rtl/
tsan_mman.cc
174
void *b = a->
GetBlockBegin
(p);
251
return allocator()->
GetBlockBegin
(p) != 0;
257
p = allocator()->
GetBlockBegin
(p);
tsan_rtl_report.cc
333
loc->addr = (uptr)allocator()->
GetBlockBegin
((void*)addr);
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc
104
CHECK_EQ(x, a->
GetBlockBegin
(x));
105
CHECK_EQ(x, a->
GetBlockBegin
(x + size - 1));
132
// Check that
GetBlockBegin
never crashes.
136
Ident(a->
GetBlockBegin
(reinterpret_cast<void *>(x)));
210
// Make sure we correctly compute
GetBlockBegin
() w/o overflow.
213
void *beg = a->
GetBlockBegin
(x);
386
CHECK_EQ(p, a.
GetBlockBegin
(p));
387
CHECK_EQ(p, a.
GetBlockBegin
(p + size - 1));
388
CHECK_EQ(p, a.
GetBlockBegin
(p + size / 2));
397
// Regression test for boundary condition in
GetBlockBegin
()
[
all
...]
/external/compiler-rt/lib/msan/
msan_allocator.cc
113
const void *beg = allocator.
GetBlockBegin
(p);
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h
358
void *
GetBlockBegin
(const void *p) {
449
// Too slow: CHECK_EQ((void *)chunk,
GetBlockBegin
((void *)chunk));
683
void *
GetBlockBegin
(const void *p) {
741
// Too slow: CHECK_EQ((void *)chunk,
GetBlockBegin
((void *)chunk));
[
all
...]
/external/compiler-rt/lib/lsan/
lsan_allocator.cc
180
void *chunk = allocator.
GetBlockBegin
(p);
/external/compiler-rt/lib/asan/
asan_allocator2.cc
196
return allocator.
GetBlockBegin
(reinterpret_cast<void *>(this));
534
// Assumes alloc_beg == allocator.
GetBlockBegin
(alloc_beg).
549
void *alloc_beg = allocator.
GetBlockBegin
(reinterpret_cast<void *>(p));
Completed in 47 milliseconds