depot_index        69 lib/stackdepot.c static int depot_index;
depot_index        84 lib/stackdepot.c 	if (stack_slabs[depot_index] == NULL) {
depot_index        85 lib/stackdepot.c 		stack_slabs[depot_index] = *prealloc;
depot_index        89 lib/stackdepot.c 		if (depot_index + 1 < STACK_ALLOC_MAX_SLABS) {
depot_index        90 lib/stackdepot.c 			stack_slabs[depot_index + 1] = *prealloc;
depot_index       113 lib/stackdepot.c 		if (unlikely(depot_index + 1 >= STACK_ALLOC_MAX_SLABS)) {
depot_index       117 lib/stackdepot.c 		depot_index++;
depot_index       124 lib/stackdepot.c 		if (depot_index + 1 < STACK_ALLOC_MAX_SLABS)
depot_index       128 lib/stackdepot.c 	if (stack_slabs[depot_index] == NULL)
depot_index       131 lib/stackdepot.c 	stack = stack_slabs[depot_index] + depot_offset;
depot_index       135 lib/stackdepot.c 	stack->handle.slabindex = depot_index;