Lines Matching refs:uptr
31 uptr AsanMappingProfile[kAsanMappingProfileSize];
61 file, line, cond, (uptr)v1, (uptr)v2);
89 CHECK((uptr)common_flags()->malloc_context_size <= kStackTraceMax);
212 uptr kHighMemEnd, kMidMemBeg, kMidMemEnd;
223 static void ReserveShadowMemoryRange(uptr beg, uptr end) {
226 uptr size = end - beg + 1;
236 static void OnLowLevelAllocate(uptr ptr, uptr size) {
244 void __asan_report_ ## type ## size(uptr addr); \
245 void __asan_report_ ## type ## size(uptr addr) { \
263 void __asan_report_ ## type ## _n(uptr addr, uptr size); \
264 void __asan_report_ ## type ## _n(uptr addr, uptr size) { \
323 for (uptr i = 0; i < kAsanMappingProfileSize; i++) {
339 static void ProtectGap(uptr a, uptr size) {
340 CHECK_EQ(a, (uptr)Mprotect(a, size));
377 Printf("red_zone=%zu\n", (uptr)flags()->redzone);
379 (uptr)common_flags()->malloc_context_size);
381 Printf("SHADOW_SCALE: %zx\n", (uptr)SHADOW_SCALE);
382 Printf("SHADOW_GRANULARITY: %zx\n", (uptr)SHADOW_GRANULARITY);
383 Printf("SHADOW_OFFSET: %zx\n", (uptr)SHADOW_OFFSET);
413 uptr PageSize = GetPageSizeCached();
414 uptr top = curr_thread->stack_top();
415 uptr bottom = ((uptr)&local_stack - PageSize) & ~(PageSize-1);
416 static const uptr kMaxExpectedCleanupSize = 64 << 20; // 64M
478 uptr shadow_start = kLowShadowBeg;