Lines Matching defs:depot_index
70 static int depot_index;
85 if (stack_slabs[depot_index] == NULL) {
86 stack_slabs[depot_index] = *prealloc;
90 if (depot_index + 1 < STACK_ALLOC_MAX_SLABS) {
91 stack_slabs[depot_index + 1] = *prealloc;
114 if (unlikely(depot_index + 1 >= STACK_ALLOC_MAX_SLABS)) {
118 depot_index++;
125 if (depot_index + 1 < STACK_ALLOC_MAX_SLABS)
129 if (stack_slabs[depot_index] == NULL)
132 stack = stack_slabs[depot_index] + depot_offset;
136 stack->handle.slabindex = depot_index;
211 if (parts.slabindex > depot_index) {
213 parts.slabindex, depot_index, handle);