compile_stack    1748 libglibc/regex.c #define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
compile_stack    1749 libglibc/regex.c #define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
compile_stack    1752 libglibc/regex.c #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
compile_stack    1855 libglibc/regex.c 						 compile_stack,
compile_stack    1878 libglibc/regex.c   return (free (compile_stack.stack), value)
compile_stack    1899 libglibc/regex.c   compile_stack_type compile_stack;
compile_stack    1949 libglibc/regex.c   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
compile_stack    1950 libglibc/regex.c   if (compile_stack.stack == NULL)
compile_stack    1953 libglibc/regex.c   compile_stack.size = INIT_COMPILE_STACK_SIZE;
compile_stack    1954 libglibc/regex.c   compile_stack.avail = 0;
compile_stack    2448 libglibc/regex.c                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
compile_stack    2450 libglibc/regex.c                   if (compile_stack.stack == NULL) return REG_ESPACE;
compile_stack    2452 libglibc/regex.c                   compile_stack.size <<= 1;
compile_stack    2475 libglibc/regex.c               compile_stack.avail++;
compile_stack    2522 libglibc/regex.c               assert (compile_stack.avail != 0);
compile_stack    2529 libglibc/regex.c                 compile_stack.avail--;
compile_stack    2860 libglibc/regex.c               if (group_in_compile_stack (compile_stack, (regnum_t) c1))
compile_stack    2936 libglibc/regex.c   free (compile_stack.stack);
compile_stack    3107 libglibc/regex.c group_in_compile_stack (compile_stack, regnum)
compile_stack    3108 libglibc/regex.c     compile_stack_type compile_stack;
compile_stack    3113 libglibc/regex.c   for (this_element = compile_stack.avail - 1;
compile_stack    3116 libglibc/regex.c     if (compile_stack.stack[this_element].regnum == regnum)