OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stack_bottom_
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/asan/
asan_thread.h
64
uptr stack_bottom() { return
stack_bottom_
; }
65
uptr stack_size() { return stack_top_ -
stack_bottom_
; }
75
return addr >=
stack_bottom_
&& addr < stack_top_;
101
uptr
stack_bottom_
;
member in class:__asan::AsanThread
asan_thread.cc
112
CHECK(AddrIsInMem(
stack_bottom_
));
118
tid(), (void*)
stack_bottom_
, (void*)stack_top_,
119
stack_top_ -
stack_bottom_
, &local);
149
GetThreadStackAndTls(tid() == 0, &
stack_bottom_
, &stack_size, &tls_begin_,
local
151
stack_top_ =
stack_bottom_
+ stack_size;
159
PoisonShadow(
stack_bottom_
, stack_top_ -
stack_bottom_
, 0);
Completed in 34 milliseconds