Lines Matching defs:current
58 // No TSAN support as the stack may not be exclusively owned by the current
67 // native frame. In case |addr| points to a fake frame of the current stack
80 for (void** current = reinterpret_cast<void**>(fake_frame_begin);
81 current < fake_frame_end; ++current) {
82 void* addr = *current;
106 void** current = reinterpret_cast<void**>(stack_end);
107 for (; current < stack_start; ++current) {
108 void* address = *current;
122 // No TSAN support as the stack may not be exclusively owned by the current
134 void** current = reinterpret_cast<void**>(stack_end);
135 CHECK_EQ(0u, reinterpret_cast<uintptr_t>(current) & (kMinStackAlignment - 1));
136 for (; current < stack->stack_start(); ++current) {
139 void* address = *current;