stack             128 builtin/tag.c  	} *stack;
stack             131 builtin/tag.c  static void push_to_stack(struct commit *candidate, struct stack *stack)
stack             133 builtin/tag.c  	int index = stack->nr++;
stack             134 builtin/tag.c  	ALLOC_GROW(stack->stack, stack->nr, stack->alloc);
stack             135 builtin/tag.c  	stack->stack[index].commit = candidate;
stack             136 builtin/tag.c  	stack->stack[index].parents = candidate->parents;
stack             142 builtin/tag.c  	struct stack stack = { 0, 0, NULL };
stack             148 builtin/tag.c  	push_to_stack(candidate, &stack);
stack             149 builtin/tag.c  	while (stack.nr) {
stack             150 builtin/tag.c  		struct stack_entry *entry = &stack.stack[stack.nr - 1];
stack             156 builtin/tag.c  			stack.nr--;
stack             165 builtin/tag.c  			stack.nr--;
stack             171 builtin/tag.c  			push_to_stack(parents->item, &stack);
stack             175 builtin/tag.c  	free(stack.stack);
stack             579 commit.c       struct commit *pop_commit(struct commit_list **stack)
stack             581 commit.c       	struct commit_list *top = *stack;
stack             585 commit.c       		*stack = top->next;
stack             207 commit.h       struct commit *pop_commit(struct commit_list **stack);
stack             651 compat/regex/regex_internal.h   struct re_fail_stack_ent_t *stack;
stack            1360 compat/regex/regexec.c       new_array = realloc (fs->stack, (sizeof (struct re_fail_stack_ent_t)
stack            1365 compat/regex/regexec.c       fs->stack = new_array;
stack            1367 compat/regex/regexec.c   fs->stack[num].idx = str_idx;
stack            1368 compat/regex/regexec.c   fs->stack[num].node = dest_node;
stack            1369 compat/regex/regexec.c   fs->stack[num].regs = re_malloc (regmatch_t, nregs);
stack            1370 compat/regex/regexec.c   if (fs->stack[num].regs == NULL)
stack            1372 compat/regex/regexec.c   memcpy (fs->stack[num].regs, regs, sizeof (regmatch_t) * nregs);
stack            1373 compat/regex/regexec.c   err = re_node_set_init_copy (&fs->stack[num].eps_via_nodes, eps_via_nodes);
stack            1384 compat/regex/regexec.c   *pidx = fs->stack[num].idx;
stack            1385 compat/regex/regexec.c   memcpy (regs, fs->stack[num].regs, sizeof (regmatch_t) * nregs);
stack            1387 compat/regex/regexec.c   re_free (fs->stack[num].regs);
stack            1388 compat/regex/regexec.c   *eps_via_nodes = fs->stack[num].eps_via_nodes;
stack            1389 compat/regex/regexec.c   return fs->stack[num].node;
stack            1417 compat/regex/regexec.c       fs->stack = re_malloc (struct re_fail_stack_ent_t, fs->alloc);
stack            1418 compat/regex/regexec.c       if (fs->stack == NULL)
stack            1515 compat/regex/regexec.c 	  re_node_set_free (&fs->stack[fs_idx].eps_via_nodes);
stack            1516 compat/regex/regexec.c 	  re_free (fs->stack[fs_idx].regs);
stack            1518 compat/regex/regexec.c       re_free (fs->stack);
stack              81 shallow.c      	struct object_array stack = OBJECT_ARRAY_INIT;
stack              85 shallow.c      	while (commit || i < heads->nr || stack.nr) {
stack             101 shallow.c      					stack.objects[--stack.nr].item;
stack             130 shallow.c      						NULL, &stack);