Home | History | Annotate | Download | only in src

Lines Matching refs:stack

253   // death test child process, which operates on a very small stack.  Use
971 // Two utility routines that together determine the direction the stack
1055 void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE,
1057 GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED);
1059 // Maximum stack alignment in bytes: For a downward-growing stack, this
1060 // amount is subtracted from size of the stack space to get an address
1061 // that is within the stack space and is aligned on all systems we care
1062 // about. As far as I know there is no ABI with stack alignment greater
1063 // than 64. We assume stack and stack_size already have alignment of
1067 static_cast<char*>(stack) +
1074 GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1);