Home | History | Annotate | Download | only in lsan

Lines Matching full:uptr

25 static const uptr kMaxAllowedMallocSize = 8UL << 30;
26 static const uptr kAllocatorSpace = 0x600000000000ULL;
27 static const uptr kAllocatorSize = 0x40000000000ULL; // 4T.
32 uptr requested_size : 54;
58 static void RegisterAllocation(const StackTrace &stack, void *p, uptr size) {
75 void *Allocate(const StackTrace &stack, uptr size, uptr alignment,
93 void *Reallocate(const StackTrace &stack, void *p, uptr new_size,
94 uptr alignment) {
106 void GetAllocatorCacheRange(uptr *begin, uptr *end) {
107 *begin = (uptr)&cache;
111 uptr GetMallocUsableSize(void *p) {
127 void GetAllocatorGlobalRange(uptr *begin, uptr *end) {
128 *begin = (uptr)&allocator;
132 uptr PointsIntoChunk(void* p) {
133 uptr addr = reinterpret_cast<uptr>(p);
134 uptr chunk = reinterpret_cast<uptr>(allocator.GetBlockBeginFastLocked(p));
146 uptr GetUserBegin(uptr chunk) {
150 LsanMetadata::LsanMetadata(uptr chunk) {
167 uptr LsanMetadata::requested_size() const {
184 if (m->allocated && (uptr)p < (uptr)chunk + m->requested_size) {