HomeSort by relevance Sort by last modified time
    Searched refs:stack_bottom_ (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/asan/
asan_thread.cc 75 CHECK(AddrIsInMem(stack_bottom_));
81 tid(), (void*)stack_bottom_, (void*)stack_top_,
82 stack_top_ - stack_bottom_, &local);
110 GetThreadStackTopAndBottom(tid() == 0, &stack_top_, &stack_bottom_); local
116 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
asan_thread.h 73 uptr stack_bottom() { return stack_bottom_; }
74 uptr stack_size() { return stack_top_ - stack_bottom_; }
82 return addr >= stack_bottom_ && addr < stack_top_;
96 uptr stack_bottom_; member in class:__asan::AsanThread

Completed in 800 milliseconds