Lines Matching refs:uptr

54   uptr Beg();       // First byte of user memory.
55 uptr End(); // Last byte of user memory.
56 uptr UsedSize(); // Size requested by the user.
57 uptr AllocTid();
58 uptr FreeTid();
62 bool AddrIsInside(uptr addr, uptr access_size, sptr *offset) {
69 bool AddrIsAtLeft(uptr addr, uptr access_size, sptr *offset) {
77 bool AddrIsAtRight(uptr addr, uptr access_size, sptr *offset) {
89 AsanChunkView FindHeapChunkByAddress(uptr address);
99 uptr size() { return size_; }
105 uptr size_;
109 void OnMap(uptr p, uptr size) const;
110 void OnUnmap(uptr p, uptr size) const;
115 const uptr kAllocatorSpace = 0xa0000000000ULL;
116 const uptr kAllocatorSize = 0x20000000000ULL; // 2T.
120 const uptr kAllocatorSpace = 0x10000000000ULL;
121 const uptr kAllocatorSize = 0x10000000000ULL; // 3T.
123 const uptr kAllocatorSpace = 0x600000000000ULL;
124 const uptr kAllocatorSize = 0x40000000000ULL; // 4T.
130 static const uptr kRegionSizeLog = 20;
131 static const uptr kNumRegions = SANITIZER_MMAP_RANGE_SIZE >> kRegionSizeLog;
144 static const uptr kNumberOfSizeClasses = SizeClassMap::kNumClasses;
152 uptr quarantine_cache[16];
160 void *asan_memalign(uptr alignment, uptr size, BufferedStackTrace *stack,
163 void asan_sized_free(void *ptr, uptr size, BufferedStackTrace *stack,
166 void *asan_malloc(uptr size, BufferedStackTrace *stack);
167 void *asan_calloc(uptr nmemb, uptr size, BufferedStackTrace *stack);
168 void *asan_realloc(void *p, uptr size, BufferedStackTrace *stack);
169 void *asan_valloc(uptr size, BufferedStackTrace *stack);
170 void *asan_pvalloc(uptr size, BufferedStackTrace *stack);
172 int asan_posix_memalign(void **memptr, uptr alignment, uptr size,
174 uptr asan_malloc_usable_size(void *ptr, uptr pc, uptr bp);
176 uptr asan_mz_size(const void *ptr);