Searched refs:re_comp_buf (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Dregex.c5580 static struct re_pattern_buffer re_comp_buf;
5596 if (!re_comp_buf.buffer)
5601 if (!re_comp_buf.buffer)
5603 re_comp_buf.buffer = (unsigned char *) malloc (200);
5604 if (re_comp_buf.buffer == NULL)
5607 re_comp_buf.allocated = 200;
5609 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
5610 if (re_comp_buf.fastmap == NULL)
5619 re_comp_buf.newline_anchor = 1;
5621 ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
5558 static struct re_pattern_buffer re_comp_buf; variable in typeref:struct:re_pattern_buffer
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dregex.c7918 static struct re_pattern_buffer re_comp_buf;
7933 if (!re_comp_buf.buffer)
7938 if (!re_comp_buf.buffer)
7940 re_comp_buf.buffer = malloc (200);
7941 if (re_comp_buf.buffer == NULL)
7944 re_comp_buf.allocated = 200;
7946 re_comp_buf.fastmap = malloc (1 << BYTEWIDTH);
7947 if (re_comp_buf.fastmap == NULL)
7956 re_comp_buf.newline_anchor = 1;
7960 ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
[all...]

Completed in 133 milliseconds