HomeSort by: relevance | last modified time | path
    Searched defs:GetBlockBegin (Results 1 - 4 of 4) sorted by relevancy

  /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));
sanitizer_allocator_primary64.h 183 void *GetBlockBegin(const void *p) {
303 // Too slow: CHECK_EQ((void *)chunk, GetBlockBegin((void *)chunk));

Completed in 13 milliseconds