Lines Matching defs:bottom
72 uptr bottom = curr_thread->stack_bottom();
73 // The default stack grows from top to bottom. (bottom < top).
76 if (local_stack >= bottom && local_stack <= top) {
79 bottom = RoundDownTo(local_stack, GetPageSize());
80 UnpoisonStack(bottom, top, "default");
84 UnpoisonStack(bottom, top, "default");
85 bottom = RoundDownTo(local_stack, GetPageSize());
86 top = bottom + GetPageSize();
87 UnpoisonStack(bottom, top, "unknown");