| /src/tests/lib/libc/regex/ | 
| t_regex_binary.c | 49 	if ((e = regcomp(&re, "[\xe0-\xf1][\xa0-\xd1].*", REG_EXTENDED)) != 0) { 51 		ATF_REQUIRE_MSG(0, "regcomp failed %s", msg);
 68 	if ((e = regcomp(&re, ": j:[]j:[]j:[\xd9j:[]", REG_EXTENDED)) != 0) {
 70 		ATF_REQUIRE_MSG(0, "regcomp failed %s", msg);
 
 | 
| Makefile | 22 REGEXSRCS = regcomp.c regerror.c regexec.c regsub.c 
 | 
| main.c | 118 	err = regcomp(&re, argv[optind++], copts); 266 	err = regcomp(&re, f0copy, opts);
 
 | 
| t_exhaust.c | 224 		e = regcomp(&re, patterns[i], tests[i].type); 229 			    "regcomp returned %d (%s) for pattern %zu [%s]", e,
 
 | 
| t_regex_att.c | 519 			int c = regcomp(&re, pattern, flags | iflags); 521 			    "regcomp returned %d for pattern %s at line %zu",
 
 | 
| /src/include/ | 
| regexp.h | 103 regexp *regcomp(const char *) __RENAME(__compat_regcomp); 
 | 
| regex.h | 96 /* regcomp() flags */ 137 int	regcomp(regex_t * __restrict, const char * __restrict, int);
 
 | 
| /src/lib/libcompat/4.3/ | 
| regex.c | 35  * terms of the regcomp/regexec interface.  It's possible that some programs 76 	re_regexp = regcomp(s);
 
 | 
| /src/tests/fs/cd9660/ | 
| h_hexdump_r.c | 53 	if (regcomp(&data_re, "^(" H "{8,9})" 56 		err(1, "regcomp");
 57 	if (regcomp(&end_re, "^(" H "{8,9})$", REG_EXTENDED) != 0)
 58 		err(1, "regcomp");
 
 | 
| /src/distrib/utils/libhack/ | 
| Makefile.inc | 28 		aligned_alloc.o regcomp.o regexec.o wrap.o 86 regcomp.o:	${HACKSRC}/../../../lib/libc/regex/regcomp.c
 
 | 
| /src/lib/libform/ | 
| type_regex.c | 66 		if ((regcomp(&new->compiled, expression, 
 | 
| /src/bin/ed/ | 
| re.c | 84 	if ((n = regcomp(expr, exps, ere)) != 0) { 
 | 
| /src/tests/rump/rumpkern/ | 
| t_kern.c | 90 			if ((status = regcomp(&preg, expect, REG_BASIC)) != 0) { 92 				printf("regcomp error: %s\n", buf);
 93 				atf_tc_fail("regcomp failed");
 
 | 
| /src/usr.bin/mail/ | 
| list.c | 573 			 * NOTE: regcomp() will fail if "nospec" and 579 		if ((e = regcomp(&preg, str, cflags)) != 0) {
 582 			(void)printf("regcomp failed: '%s': %s\n", str, errbuf);
 
 | 
| /src/sbin/efi/ | 
| getvars.c | 151 	if (regcomp(&args.preg, regexp, REG_EXTENDED) != 0) 152 		err(EXIT_FAILURE, "regcomp: %s", regexp);
 
 | 
| /src/tools/make/ | 
| configure.ac | 43 # regcomp() and regexec() are also names of functions in the old V8 
 | 
| /src/sbin/mount_portal/ | 
| conf.c | 208 		errcode = regcomp(&p->p_re, p->p_key, REG_EXTENDED|REG_NOSUB); 215 			syslog(LOG_WARNING, "%s, line %d: regcomp \"%s\": %s",
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/radeon/ | 
| mkregtable.c | 209 	if (regcomp 
 | 
| /src/usr.bin/nl/ | 
| nl.c | 381 		if ((error = regcomp(&numbering_properties[section].expr, 
 | 
| /src/bin/expr/ | 
| expr.y | 305 	if ((rc = regcomp(&rp, re, REG_BASIC)) != 0) { 
 | 
| /src/usr.bin/m4/ | 
| gnum4.c | 400  * says. So we twiddle with the regexp before passing it to regcomp. 508 		error = regcomp(&re, pat, mode);
 541 	error = regcomp(&re, pat, REG_EXTENDED);
 
 | 
| /src/lib/libedit/ | 
| search.c | 133 	if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) { 142 	if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
 
 | 
| /src/share/examples/refuse/dmesgfs/ | 
| dmesgfs.c | 266 	if (regcomp(&r, "^([a-z0-9]+) at ([a-z0-9]+)(.*)", REG_EXTENDED) != 0) { 
 | 
| /src/usr.bin/csplit/ | 
| csplit.c | 391 	if (regcomp(&cre, re, REG_BASIC|REG_NOSUB) != 0) 
 | 
| /src/tools/compat/ | 
| Makefile | 18 		regcomp.c regerror.c regexec.c regfree.c \ 
 |