Lines Matching refs:uptr
30 static const uptr kNumberOfSizeClasses = 255;
39 uptr Beg(); // first byte of user memory.
40 uptr End(); // last byte of user memory.
41 uptr UsedSize(); // size requested by the user.
42 uptr AllocTid();
43 uptr FreeTid();
46 bool AddrIsInside(uptr addr, uptr access_size, sptr *offset) {
53 bool AddrIsAtLeft(uptr addr, uptr access_size, sptr *offset) {
61 bool AddrIsAtRight(uptr addr, uptr access_size, sptr *offset) {
73 AsanChunkView FindHeapChunkByAddress(uptr address);
83 uptr size() { return size_; }
89 uptr size_;
100 uptr quarantine_cache[16];
101 uptr allocator2_cache[96 * (512 * 8 + 16)]; // Opaque.
105 void *asan_memalign(uptr alignment, uptr size, StackTrace *stack,
109 void *asan_malloc(uptr size, StackTrace *stack);
110 void *asan_calloc(uptr nmemb, uptr size, StackTrace *stack);
111 void *asan_realloc(void *p, uptr size, StackTrace *stack);
112 void *asan_valloc(uptr size, StackTrace *stack);
113 void *asan_pvalloc(uptr size, StackTrace *stack);
115 int asan_posix_memalign(void **memptr, uptr alignment, uptr size,
117 uptr asan_malloc_usable_size(void *ptr, StackTrace *stack);
119 uptr asan_mz_size(const void *ptr);