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

  /external/compiler-rt/lib/msan/
msan_thread.h 31 uptr stack_top() { return stack_top_; }
38 return addr >= stack_bottom_ && addr < stack_top_;
56 uptr stack_top_; member in class:__msan::MsanThread
msan_thread.cc 27 stack_top_ = stack_bottom_ + stack_size;
35 __msan_unpoison((void *)stack_bottom_, stack_top_ - stack_bottom_);
47 CHECK(MEM_IS_APP(stack_top_ - 1));
  /toolchain/binutils/binutils-2.25/gold/
descriptors.h 90 int stack_top_; member in class:gold::Descriptors
descriptors.cc 67 stack_top_(-1), current_(0), limit_(8192 - 16)
100 if (descriptor == this->stack_top_)
102 this->stack_top_ = pod->stack_next;
217 pod->stack_next = this->stack_top_;
218 this->stack_top_ = descriptor;
239 int i = this->stack_top_;
253 this->stack_top_ = pod->stack_next;
290 this->stack_top_ = -1;
  /external/compiler-rt/lib/asan/
asan_thread.h 65 uptr stack_top() { return stack_top_; }
82 return addr >= stack_bottom_ && addr < stack_top_;
128 uptr stack_top_; member in class:__asan::AsanThread
130 // stack_size_ == stack_top_ - stack_bottom_;
asan_thread.cc 158 CHECK(AddrIsInMem(stack_top_ - 1));
162 (void *)stack_bottom_, (void *)stack_top_, stack_top_ - stack_bottom_,
200 stack_top_ = stack_bottom_ + stack_size_;
208 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);

Completed in 731 milliseconds