Searched refs:compile_stack (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/usr.bin/gcc/gcc/fixinc/ |
| H A D | gnu-regex.c | 1630 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0) 1631 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size) 1634 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail]) 1737 compile_stack, 1760 return (free (compile_stack.stack), value) 1781 compile_stack_type compile_stack; local 1831 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t); 1832 if (compile_stack.stack == NULL) 1835 compile_stack.size = INIT_COMPILE_STACK_SIZE; 1836 compile_stack.avail = 0; [all …]
|
| /openbsd-src/gnu/usr.bin/cvs/lib/ |
| H A D | regex.c | 1700 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0) 1701 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size) 1704 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail]) 1855 free (compile_stack.stack); \ 1878 compile_stack_type compile_stack; local 1936 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t); 1937 if (compile_stack.stack == NULL) 1940 compile_stack.size = INIT_COMPILE_STACK_SIZE; 1941 compile_stack.avail = 0; 2475 RETALLOC (compile_stack.stack, compile_stack.size << 1, [all …]
|
| /openbsd-src/gnu/lib/libiberty/src/ |
| H A D | regex.c | 2137 # define COMPILE_STACK_EMPTY (compile_stack.avail == 0) 2138 # define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size) 2141 # define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail]) 2250 static boolean group_in_compile_stack (compile_stack_type compile_stack, 2275 return (free(pattern), free(mbs_offset), free(is_binary), free (compile_stack.stack), value) 2278 return (free (compile_stack.stack), value) 2310 compile_stack_type compile_stack; in PREFIX() local 2385 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t); in PREFIX() 2386 if (compile_stack.stack == NULL) in PREFIX() 2396 compile_stack.size = INIT_COMPILE_STACK_SIZE; in PREFIX() [all …]
|