Searched refs:re_comp_buf (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/external/gpl2/xcvs/dist/lib/ |
H A D | regcomp.c | 645 static struct re_pattern_buffer re_comp_buf; variable 661 if (!re_comp_buf.re_buffer) in re_comp() 666 if (re_comp_buf.re_buffer) in re_comp() 668 fastmap = re_comp_buf.re_fastmap; in re_comp() 669 re_comp_buf.re_fastmap = NULL; in re_comp() 670 __regfree (&re_comp_buf); in re_comp() 671 memset (&re_comp_buf, '\0', sizeof (re_comp_buf)); in re_comp() 672 re_comp_buf.re_fastmap = fastmap; in re_comp() 675 if (re_comp_buf.re_fastmap == NULL) in re_comp() 677 re_comp_buf.re_fastmap = (char *) malloc (SBC_MAX); in re_comp() [all …]
|
H A D | regexec.c | 593 return 0 == regexec (&re_comp_buf, s, 0, NULL, 0); in weak_alias()
|
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
H A D | regex.c | 7815 static struct re_pattern_buffer re_comp_buf; 7830 if (!re_comp_buf.buffer) 7835 if (!re_comp_buf.buffer) 7837 re_comp_buf.buffer = (unsigned char *) malloc (200); 7838 if (re_comp_buf.buffer == NULL) 7840 re_comp_buf.allocated = 200; 7842 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH); 7843 if (re_comp_buf.fastmap == NULL) 7851 re_comp_buf.newline_anchor = 1; 7855 ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf); [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgrep/ |
H A D | regex.c | 7897 static struct re_pattern_buffer re_comp_buf; 7912 if (!re_comp_buf.buffer) 7917 if (!re_comp_buf.buffer) 7919 re_comp_buf.buffer = malloc (200); 7920 if (re_comp_buf.buffer == NULL) 7923 re_comp_buf.allocated = 200; 7925 re_comp_buf.fastmap = malloc (1 << BYTEWIDTH); 7926 if (re_comp_buf.fastmap == NULL) 7935 re_comp_buf.newline_anchor = 1; 7939 ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf); [all …]
|
/netbsd-src/external/gpl2/diffutils/dist/lib/ |
H A D | regex.c | 8019 static struct re_pattern_buffer re_comp_buf; 8035 if (!re_comp_buf.buffer) 8040 if (!re_comp_buf.buffer) 8042 re_comp_buf.buffer = (unsigned char *) malloc (200); 8043 if (re_comp_buf.buffer == NULL) 8046 re_comp_buf.allocated = 200; 8048 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH); 8049 if (re_comp_buf.fastmap == NULL) 8058 re_comp_buf.newline_anchor = 1; 8062 ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libiberty/ |
H A D | regex.c | 7815 static struct re_pattern_buffer re_comp_buf; 7830 if (!re_comp_buf.buffer) 7835 if (!re_comp_buf.buffer) 7837 re_comp_buf.buffer = (unsigned char *) malloc (200); 7838 if (re_comp_buf.buffer == NULL) 7840 re_comp_buf.allocated = 200; 7842 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH); 7843 if (re_comp_buf.fastmap == NULL) 7851 re_comp_buf.newline_anchor = 1; 7855 ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf); [all …]
|
/netbsd-src/external/gpl3/binutils/dist/libiberty/ |
H A D | regex.c | 7815 static struct re_pattern_buffer re_comp_buf; 7830 if (!re_comp_buf.buffer) 7835 if (!re_comp_buf.buffer) 7837 re_comp_buf.buffer = (unsigned char *) malloc (200); 7838 if (re_comp_buf.buffer == NULL) 7840 re_comp_buf.allocated = 200; 7842 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH); 7843 if (re_comp_buf.fastmap == NULL) 7851 re_comp_buf.newline_anchor = 1; 7855 ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf); [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/ |
H A D | regex.c | 7811 static struct re_pattern_buffer re_comp_buf; 7826 if (!re_comp_buf.buffer) 7831 if (!re_comp_buf.buffer) 7833 re_comp_buf.buffer = (unsigned char *) malloc (200); 7834 if (re_comp_buf.buffer == NULL) 7836 re_comp_buf.allocated = 200; 7838 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH); 7839 if (re_comp_buf.fastmap == NULL) 7847 re_comp_buf.newline_anchor = 1; 7851 ret = wcs_regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf); [all …]
|
/netbsd-src/external/gpl2/grep/dist/lib/ |
H A D | regex.c | 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); [all …]
|