Lines Matching refs:re_comp_buf
7557 static struct re_pattern_buffer re_comp_buf; variable
7573 if (!re_comp_buf.buffer)
7578 if (!re_comp_buf.buffer)
7580 re_comp_buf.buffer = (unsigned char *) malloc (200);
7581 if (re_comp_buf.buffer == NULL)
7584 re_comp_buf.allocated = 200;
7586 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
7587 if (re_comp_buf.fastmap == NULL)
7596 re_comp_buf.newline_anchor = 1;
7598 ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
7617 0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);