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

  /external/compiler-rt/lib/asan/
asan_thread.h 81 uptr stack_top() { return stack_top_; }
83 uptr stack_size() { return stack_top_ - stack_bottom_; }
91 return addr >= stack_bottom_ && addr < stack_top_;
104 uptr stack_top_; member in class:__asan::AsanThread
asan_thread.cc 77 CHECK(AddrIsInMem(stack_top_ - 1));
82 tid(), (void*)stack_bottom_, (void*)stack_top_,
83 stack_top_ - stack_bottom_, &local);
111 GetThreadStackTopAndBottom(tid() == 0, &stack_top_, &stack_bottom_); local
117 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);

Completed in 61 milliseconds