Lines Matching full:uptr
76 uptr PageSize = GetPageSizeCached();
77 uptr size = RoundUpTo(sizeof(AsanThread), PageSize);
106 uptr size = RoundUpTo(sizeof(AsanThread), GetPageSizeCached());
125 thread_return_t AsanThread::ThreadStart(uptr os_id) {
148 uptr stack_size = 0, tls_size = 0;
155 CHECK(AddrIsInStack((uptr)&local));
164 const char *AsanThread::GetFrameNameByAddr(uptr addr, uptr *offset,
165 uptr *frame_pc) {
166 uptr bottom = 0;
173 *frame_pc = ((uptr*)bottom)[2];
174 return (const char *)((uptr*)bottom)[1];
176 uptr aligned_addr = addr & ~(SANITIZER_WORDSIZE/8 - 1); // align addr.
195 uptr* ptr = (uptr*)SHADOW_TO_MEM((uptr)(shadow_ptr + 1));
197 *offset = addr - (uptr)ptr;
207 if (t->AddrIsInStack((uptr)addr)) return true;
208 if (t->fake_stack() && t->fake_stack()->AddrIsInFakeStack((uptr)addr))
251 AsanThread *FindThreadByStackAddress(uptr addr) {
269 bool GetThreadRangesLocked(uptr os_id, uptr *stack_begin, uptr *stack_end,
270 uptr *tls_begin, uptr *tls_end,
271 uptr *cache_begin, uptr *cache_end) {