Symbol: re
bin/expr/expr.y
299
eval_match(const char *str, const char *re)
bin/expr/expr.y
305
if ((rc = regcomp(&rp, re, REG_BASIC)) != 0) {
common/dist/zlib/test/infcover.c
247
unsigned char *in, *re;
common/dist/zlib/test/infcover.c
271
re = realloc(in, next);
common/dist/zlib/test/infcover.c
272
return re == NULL ? in : re;
games/fortune/fortune/fortune.c
1198
re_setup(struct re *rx, const char *pattern, bool ignore_case)
games/fortune/fortune/fortune.c
1225
re_cleanup(struct re *rx)
games/fortune/fortune/fortune.c
123
struct re Re_pat;
games/fortune/fortune/fortune.c
1234
re_match(struct re *rx, const char *string)
games/fortune/fortune/fortune.c
124
struct re Re_pat13;
games/fortune/fortune/fortune.c
125
static struct re *Re_use = NULL;
games/fortune/fortune/fortune.c
179
static void re_setup(struct re *rx, const char *pattern, bool ignore_case);
games/fortune/fortune/fortune.c
180
static void re_cleanup(struct re *rx);
lib/libc/locale/_wctrans.c
100
base = re + 1;
lib/libc/locale/_wctrans.c
85
_RuneEntry *base, *re;
lib/libc/locale/_wctrans.c
96
re = base + (x >> 1);
lib/libc/locale/_wctrans.c
97
if (re->re_min <= c0 && re->re_max >= c0)
lib/libc/locale/_wctrans.c
98
return (re->re_map + c0 - re->re_min);
lib/libc/locale/_wctrans.c
99
else if (c0 >= re->re_max) {
lib/libc/locale/_wctype.c
100
base = re + 1;
lib/libc/locale/_wctype.c
79
_RuneEntry *base, *re;
lib/libc/locale/_wctype.c
93
re = base + (x >> 1);
lib/libc/locale/_wctype.c
94
if (re->re_min <= wc0 && re->re_max >= wc0) {
lib/libc/locale/_wctype.c
95
if (re->re_rune_types)
lib/libc/locale/_wctype.c
96
return re->re_rune_types[wc0 - re->re_min];
lib/libc/locale/_wctype.c
98
return re->re_map;
lib/libc/locale/_wctype.c
99
} else if (wc0 > re->re_max) {
lib/libc/locale/rune.c
241
_RuneEntry *re;
lib/libc/locale/rune.c
268
n = sizeof(*rlp) + (len * sizeof(*re)) + lenvar;
lib/libc/locale/rune.c
291
re = (_RuneEntry *)(void *)(rlp + 1);
lib/libc/locale/rune.c
292
rune = (uint32_t *)(void *)(re + len);
lib/libc/locale/rune.c
306
rl->rl_##name##_ext.rr_rune_ranges = re; \
lib/libc/locale/rune.c
310
re->re_min = be32toh((uint32_t)fre->fre_min); \
lib/libc/locale/rune.c
311
re->re_max = be32toh((uint32_t)fre->fre_max); \
lib/libc/locale/rune.c
312
re->re_map = be32toh((uint32_t)fre->fre_map); \
lib/libc/locale/rune.c
313
if (re->re_map != 0) { \
lib/libc/locale/rune.c
314
re->re_rune_types = NULL; \
lib/libc/locale/rune.c
316
re->re_rune_types = rune; \
lib/libc/locale/rune.c
317
len = re->re_max - re->re_min + 1; \
lib/libc/locale/rune.c
328
++fre, ++re; \
lib/libc/net/sctp_sys_calls.c
249
struct sockaddr *re;
lib/libc/net/sctp_sys_calls.c
280
re = (struct sockaddr *)&addrs->addr[0];
lib/libc/net/sctp_sys_calls.c
281
*raddrs = re;
lib/libc/net/sctp_sys_calls.c
307
struct sockaddr *re;
lib/libc/net/sctp_sys_calls.c
343
re = (struct sockaddr *)&addrs->addr[0];
lib/libc/net/sctp_sys_calls.c
344
*raddrs = re;
lib/libedit/search.c
119
regex_t re;
lib/libedit/search.c
133
if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) {
lib/libedit/search.c
134
rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL,
lib/libedit/search.c
136
regfree(&re);
lib/libedit/search.c
142
if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
lib/libedit/search.c
143
rv = regexec(re, ct_encode_string(str, &conv));
lib/libedit/search.c
144
el_free(re);
sbin/sysctl/sysctl.c
292
regex_t *re;
sbin/sysctl/sysctl.c
358
if ((re = malloc(sizeof(*re) * __arraycount(handlers))) == NULL)
sbin/sysctl/sysctl.c
363
re, &lastcompiled);
sbin/sysctl/sysctl.c
380
parse(l, re, &lastcompiled);
sbin/sysctl/sysctl.c
393
parse(*argv++, re, &lastcompiled);
sbin/sysctl/sysctl.c
405
findhandler(const char *s, regex_t *re, size_t *lastcompiled)
sbin/sysctl/sysctl.c
417
j = regcomp(&re[i], p[i].ps_re, REG_EXTENDED);
sbin/sysctl/sysctl.c
419
regerror(j, &re[i], eb, sizeof(eb));
sbin/sysctl/sysctl.c
424
j = regexec(&re[i], s, 1, &match, 0);
sbin/sysctl/sysctl.c
430
regerror(j, &re[i], eb, sizeof(eb));
sbin/sysctl/sysctl.c
594
int add, regex_t *re, size_t *lastcompiled)
sbin/sysctl/sysctl.c
689
p = findhandler(canonname, re, lastcompiled);
sbin/sysctl/sysctl.c
747
1, re, lastcompiled);
sbin/sysctl/sysctl.c
840
parse(char *l, regex_t *re, size_t *lastcompiled)
sbin/sysctl/sysctl.c
913
print_tree(&name[0], namelen, node, type, 0, re, lastcompiled);
sbin/sysctl/sysctl.c
929
if (type != CTLTYPE_NODE && (w = findhandler(canonname, re,
sbin/sysctl/sysctl.c
957
print_tree(&name[0], namelen, node, type, 0, re, lastcompiled);
sys/arch/alpha/include/bus_funcs.h
125
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/alpha/include/bus_funcs.h
126
(*(t)->abs_alloc)((t)->abs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/arc/include/bus_funcs.h
205
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/arc/include/bus_funcs.h
206
(*(t)->bs_alloc)((t), (rs), (re), (s), (a), (b), (f), (ap), (hp))
sys/arch/arm/include/bus_funcs.h
123
#define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
sys/arch/arm/include/bus_funcs.h
124
(*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/dreamcast/include/bus_funcs.h
119
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/dreamcast/include/bus_funcs.h
120
(*(t)->dbs_alloc)((t)->dbs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/evbcf/include/bus_space.h
151
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/evbsh3/include/bus_funcs.h
130
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/evbsh3/include/bus_funcs.h
131
(*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/ews4800mips/include/bus.h
515
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/ews4800mips/include/bus.h
516
(*(t)->ebs_alloc)((t)->ebs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/hpcmips/include/bus.h
305
#define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
sys/arch/hpcmips/include/bus.h
306
(*__bs_ops(t).bs_alloc)(t, (rs), (re), (s), (a), (b), (c), (ap), (hp))
sys/arch/hpcsh/include/bus_funcs.h
118
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/hpcsh/include/bus_funcs.h
119
(*(t)->hbs_alloc)((t)->hbs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/ia64/include/bus.h
166
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/ia64/include/bus.h
167
ia64_bus_space__alloc((t), (rs), (re), (s), (a), (b), (f), (ap), (hp))
sys/arch/landisk/include/bus_funcs.h
118
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/landisk/include/bus_funcs.h
119
(*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/m68k/060sp/dist/fpsp.s
1007
# if our emulation, after re-doing the operation, decided that
sys/arch/m68k/060sp/dist/fpsp.s
11824
# if the rnd mode is anything but RZ, then we have to re-do the above
sys/arch/m68k/060sp/dist/fpsp.s
974
# if our emulation, after re-doing the operation, decided that
sys/arch/m68k/060sp/dist/pfpsp.s
1007
# if our emulation, after re-doing the operation, decided that
sys/arch/m68k/060sp/dist/pfpsp.s
8256
# if the rnd mode is anything but RZ, then we have to re-do the above
sys/arch/m68k/060sp/dist/pfpsp.s
974
# if our emulation, after re-doing the operation, decided that
sys/arch/m68k/include/bus_space_simple.h
157
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/mips/include/bus_space_funcs.h
123
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/mips/include/bus_space_funcs.h
124
(*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/mipsco/include/bus.h
312
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/mipsco/include/bus.h
313
(*(t)->bs_alloc)((t), (rs), (re), (s), (a), (b), (f), (ap), (hp))
sys/arch/or1k/include/bus_funcs.h
169
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/or1k/include/bus_funcs.h
170
((*(t)->pbs_alloc)((t), (rs), (re), (s), (a), (b), (f), (ap), (hp)))
sys/arch/playstation2/include/bus.h
558
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/playstation2/include/bus.h
559
(*(t)->pbs_alloc)((t)->pbs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/powerpc/include/bus_funcs.h
176
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/powerpc/include/bus_funcs.h
177
((*(t)->pbs_alloc)((t), (rs), (re), (s), (a), (b), (f), (ap), (hp)))
sys/arch/riscv/include/bus_funcs.h
119
#define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \
sys/arch/riscv/include/bus_funcs.h
120
(*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/sh3/include/bus_funcs.h
97
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/sh3/include/bus_funcs.h
98
sh_memio_alloc((t), (rs), (re), (s), (a), (b), (f), (ap), (hp))
sys/arch/sparc64/sparc64/machdep.c
1574
bus_space_alloc(bus_space_tag_t t, bus_addr_t rs, bus_addr_t re, bus_size_t s,
sys/arch/sparc64/sparc64/machdep.c
1578
_BS_CALL(t, sparc_bus_alloc)(t, rs, re, s, a, b, f, ap, hp);
sys/arch/sparc64/sparc64/machdep.c
2391
sparc_bus_alloc(bus_space_tag_t t, bus_addr_t rs, bus_addr_t re, bus_size_t s,
sys/arch/vax/include/bus.h
179
#define bus_space_alloc(t, rs, re, s, a, b, f, ap, hp) \
sys/arch/vax/include/bus.h
180
(*(t)->vbs_alloc)((t)->vbs_cookie, (rs), (re), (s), (a), (b), \
sys/arch/vax/vax/bus_mem.c
100
bus_addr_t re,
sys/arch/vax/vsa/tc_vsbus.c
412
vax_tc_bus_space_alloc(void *t, bus_addr_t rs, bus_addr_t re, bus_size_t s,
sys/arch/x68k/include/bus.h
136
#define bus_space_alloc(t, rs, re, s, a, b, f, r, h) \
sys/arch/x68k/include/bus.h
138
(rs), (re), (s), (a), (b), (f), (r), (h)))
sys/dev/hid/uhid_common.c
450
struct usb_ctl_report *re;
sys/dev/hid/uhid_common.c
537
re = (struct usb_ctl_report *)addr;
sys/dev/hid/uhid_common.c
538
switch (re->ucr_report) {
sys/dev/hid/uhid_common.c
552
if (size + extra > sizeof(re->ucr_data))
sys/dev/hid/uhid_common.c
554
err = hidev_get_report(sc->sc_hidev, re->ucr_report,
sys/dev/hid/uhid_common.c
555
re->ucr_data, size + extra);
sys/dev/hid/uhid_common.c
557
memmove(re->ucr_data, re->ucr_data+1, size);
sys/dev/hid/uhid_common.c
563
re = (struct usb_ctl_report *)addr;
sys/dev/hid/uhid_common.c
564
switch (re->ucr_report) {
sys/dev/hid/uhid_common.c
577
if (size > sizeof(re->ucr_data))
sys/dev/hid/uhid_common.c
579
err = hidev_set_report(sc->sc_hidev, re->ucr_report,
sys/dev/hid/uhid_common.c
580
re->ucr_data, size);
sys/ufs/lfs/lfs_subr.c
187
struct lfs_res_blk *re;
sys/ufs/lfs/lfs_subr.c
220
re = fs->lfs_resblk + start + i;
sys/ufs/lfs/lfs_subr.c
221
re->inuse = 1;
sys/ufs/lfs/lfs_subr.c
222
r = re->p;
sys/ufs/lfs/lfs_subr.c
223
KASSERT(re->size >= size);
sys/ufs/lfs/lfs_subr.c
225
LIST_INSERT_HEAD(&fs->lfs_reshash[h], re, res);
sys/ufs/lfs/lfs_subr.c
246
res_t *re;
sys/ufs/lfs/lfs_subr.c
251
LIST_FOREACH(re, &fs->lfs_reshash[h], res) {
sys/ufs/lfs/lfs_subr.c
252
if (re->p == p) {
sys/ufs/lfs/lfs_subr.c
253
KASSERT(re->inuse == 1);
sys/ufs/lfs/lfs_subr.c
254
LIST_REMOVE(re, res);
sys/ufs/lfs/lfs_subr.c
255
re->inuse = 0;
tests/lib/libc/regex/main.c
118
err = regcomp(&re, argv[optind++], copts);
tests/lib/libc/regex/main.c
120
len = regerror(err, &re, erbuf, sizeof(erbuf));
tests/lib/libc/regex/main.c
125
regprint(&re, stdout);
tests/lib/libc/regex/main.c
128
regfree(&re);
tests/lib/libc/regex/main.c
136
err = regexec(&re, argv[optind], (size_t)NS, subs, eopts);
tests/lib/libc/regex/main.c
138
len = regerror(err, &re, erbuf, sizeof(erbuf));
tests/lib/libc/regex/main.c
178
regex_t re;
tests/lib/libc/regex/main.c
225
re.re_endp = bpname;
tests/lib/libc/regex/main.c
227
ne = regerror(REG_ATOI, &re, erbuf, sizeof(erbuf));
tests/lib/libc/regex/main.c
246
regex_t re;
tests/lib/libc/regex/main.c
263
re.re_endp = (opts&REG_PEND) ? f0copy + strlen(f0copy) : NULL;
tests/lib/libc/regex/main.c
266
err = regcomp(&re, f0copy, opts);
tests/lib/libc/regex/main.c
269
len = regerror(err, &re, erbuf, sizeof(erbuf));
tests/lib/libc/regex/main.c
283
regfree(&re);
tests/lib/libc/regex/main.c
296
err = regexec(&re, f2copy, NSUBS, subs, options('e', f1));
tests/lib/libc/regex/main.c
300
len = regerror(err, &re, erbuf, sizeof(erbuf));
tests/lib/libc/regex/main.c
322
regfree(&re);
tests/lib/libc/regex/main.c
343
regfree(&re);
tests/lib/libc/regex/main.c
533
regex_t re;
tests/lib/libc/regex/main.c
538
re.re_endp = efbuf;
tests/lib/libc/regex/main.c
540
(void) regerror(REG_ATOI, &re, efbuf, sizeof(efbuf));
tests/lib/libc/regex/main.c
71
regex_t re;
tests/lib/libc/regex/t_exhaust.c
211
regex_t re;
tests/lib/libc/regex/t_exhaust.c
224
e = regcomp(&re, patterns[i], tests[i].type);
tests/lib/libc/regex/t_exhaust.c
227
(void)regerror(e, &re, ebuf, sizeof(ebuf));
tests/lib/libc/regex/t_exhaust.c
233
(void)regexec(&re, "aaaaaaaaaaa", 0, NULL, 0);
tests/lib/libc/regex/t_exhaust.c
234
regfree(&re);
tests/lib/libc/regex/t_regex_att.c
390
regex_t re;
tests/lib/libc/regex/t_regex_att.c
519
int c = regcomp(&re, pattern, flags | iflags);
tests/lib/libc/regex/t_regex_att.c
525
int e = regexec(&re, input, nm, pm, 0);
tests/lib/libc/regex/t_regex_att.c
530
regfree(&re);
tests/lib/libc/regex/t_regex_binary.c
45
regex_t re;
tests/lib/libc/regex/t_regex_binary.c
49
if ((e = regcomp(&re, "[\xe0-\xf1][\xa0-\xd1].*", REG_EXTENDED)) != 0) {
tests/lib/libc/regex/t_regex_binary.c
50
regerror(e, &re, msg, sizeof(msg));
tests/lib/libc/regex/t_regex_binary.c
63
regex_t re;
tests/lib/libc/regex/t_regex_binary.c
68
if ((e = regcomp(&re, ": j:[]j:[]j:[\xd9j:[]", REG_EXTENDED)) != 0) {
tests/lib/libc/regex/t_regex_binary.c
69
regerror(e, &re, msg, sizeof(msg));
tests/usr.bin/xlint/lint1/d_c99_complex_split.c
36
set_complex_complete(double re, double im)
tests/usr.bin/xlint/lint1/d_c99_complex_split.c
40
__real__ c = re;
tests/usr.bin/xlint/lint1/d_c99_complex_split.c
53
set_complex_only_real(double re)
tests/usr.bin/xlint/lint1/d_c99_complex_split.c
57
__real__ c = re;
usr.bin/csplit/csplit.c
372
char *ecopy, *ep, *p, *pofs, *re;
usr.bin/csplit/csplit.c
378
re = ecopy + 1;
usr.bin/csplit/csplit.c
391
if (regcomp(&cre, re, REG_BASIC|REG_NOSUB) != 0)
usr.bin/csplit/csplit.c
392
errx(1, "%s: bad regular expression", re);
usr.bin/csplit/csplit.c
414
errx(1, "%s: no match", re);
usr.bin/getent/getent.c
735
struct rpcent *re;
usr.bin/getent/getent.c
742
#define RPCPRINT printfmtstrings(re->r_aliases, " ", " ", \
usr.bin/getent/getent.c
744
re->r_name, re->r_number)
usr.bin/getent/getent.c
749
while ((re = getrpcent()) != NULL)
usr.bin/getent/getent.c
754
re = getrpcbynumber((int)id);
usr.bin/getent/getent.c
756
re = getrpcbyname(argv[i]);
usr.bin/getent/getent.c
757
if (re != NULL)
usr.bin/m4/gnum4.c
248
exit_regerror(int er, regex_t *re, const char *source)
usr.bin/m4/gnum4.c
253
errlen = regerror(er, re, NULL, 0);
usr.bin/m4/gnum4.c
256
regerror(er, re, errbuf, errlen);
usr.bin/m4/gnum4.c
279
add_sub(size_t n, const char *string, regex_t *re, regmatch_t *pm)
usr.bin/m4/gnum4.c
281
if (n > re->re_nsub) {
usr.bin/m4/gnum4.c
300
add_replace(const char *string, regex_t *re, const char *replace, regmatch_t *pm)
usr.bin/m4/gnum4.c
306
add_sub(0, string, re, pm);
usr.bin/m4/gnum4.c
317
add_sub(0, string, re, pm);
usr.bin/m4/gnum4.c
324
add_sub(*(++p) - '0', string, re, pm);
usr.bin/m4/gnum4.c
333
do_subst(const char *string, regex_t *re, const char *source,
usr.bin/m4/gnum4.c
340
while ((error = regexec(re, string, re->re_nsub+1, pm, flags)) == 0) {
usr.bin/m4/gnum4.c
365
add_replace(string, re, replace, pm);
usr.bin/m4/gnum4.c
372
exit_regerror(error, re, source);
usr.bin/m4/gnum4.c
377
do_regexp(const char *string, regex_t *re, const char *source,
usr.bin/m4/gnum4.c
382
switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
usr.bin/m4/gnum4.c
384
add_replace(string, re, replace, pm);
usr.bin/m4/gnum4.c
390
exit_regerror(error, re, source);
usr.bin/m4/gnum4.c
395
do_regexpindex(const char *source, regex_t *re, const char *string, regmatch_t *pm)
usr.bin/m4/gnum4.c
399
switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
usr.bin/m4/gnum4.c
407
exit_regerror(error, re, source);
usr.bin/m4/gnum4.c
492
regex_t re;
usr.bin/m4/gnum4.c
504
error = regcomp(&re, source, mode);
usr.bin/m4/gnum4.c
506
exit_regerror(error, &re, source);
usr.bin/m4/gnum4.c
508
pmatch = xreallocarray(NULL, re.re_nsub+1, sizeof(regmatch_t),
usr.bin/m4/gnum4.c
510
do_subst(argv[2], &re, source,
usr.bin/m4/gnum4.c
513
regfree(&re);
usr.bin/m4/gnum4.c
522
regex_t re;
usr.bin/m4/gnum4.c
542
error = regcomp(&re, source, REG_EXTENDED);
usr.bin/m4/gnum4.c
544
exit_regerror(error, &re, source);
usr.bin/m4/gnum4.c
546
pmatch = xreallocarray(NULL, re.re_nsub+1, sizeof(regmatch_t), NULL);
usr.bin/m4/gnum4.c
548
do_regexpindex(argv[2], &re, source, pmatch);
usr.bin/m4/gnum4.c
550
do_regexp(argv[2], &re, source, argv[4], pmatch);
usr.bin/m4/gnum4.c
552
regfree(&re);
usr.bin/make/var.c
1645
regex_t re;
usr.bin/make/var.c
1667
xrv = regexec(&args->re, wp, args->nsub, m, flags);
usr.bin/make/var.c
1671
RegexError(xrv, &args->re, "Unexpected regex error");
usr.bin/make/var.c
3028
FStr re;
usr.bin/make/var.c
3043
re = LazyBuf_DoneGet(&reBuf);
usr.bin/make/var.c
3047
FStr_Done(&re);
usr.bin/make/var.c
3060
if (re.str[0] == '\0') {
usr.bin/make/var.c
3066
error = regcomp(&args.re, re.str, REG_EXTENDED);
usr.bin/make/var.c
3068
RegexError(error, &args.re, "Regex compilation error");
usr.bin/make/var.c
3071
FStr_Done(&re);
usr.bin/make/var.c
3075
args.nsub = args.re.re_nsub + 1;
usr.bin/make/var.c
3081
regfree(&args.re);
usr.bin/make/var.c
3084
FStr_Done(&re);
usr.bin/mklocale/yacc.y
697
_FileRuneEntry re;
usr.bin/mklocale/yacc.y
699
memset(&re, 0, sizeof(re));
usr.bin/mklocale/yacc.y
700
re.fre_min = htonl(list->min);
usr.bin/mklocale/yacc.y
701
re.fre_max = htonl(list->max);
usr.bin/mklocale/yacc.y
702
re.fre_map = htonl(list->map);
usr.bin/mklocale/yacc.y
704
if (fwrite((char *)&re, sizeof(re), 1, fp) != 1)
usr.bin/mklocale/yacc.y
711
_FileRuneEntry re;
usr.bin/mklocale/yacc.y
713
memset(&re, 0, sizeof(re));
usr.bin/mklocale/yacc.y
714
re.fre_min = htonl(list->min);
usr.bin/mklocale/yacc.y
715
re.fre_max = htonl(list->max);
usr.bin/mklocale/yacc.y
716
re.fre_map = htonl(list->map);
usr.bin/mklocale/yacc.y
718
if (fwrite((char *)&re, sizeof(re), 1, fp) != 1)
usr.bin/mklocale/yacc.y
725
_FileRuneEntry re;
usr.bin/mklocale/yacc.y
727
memset(&re, 0, sizeof(re));
usr.bin/mklocale/yacc.y
728
re.fre_min = htonl(list->min);
usr.bin/mklocale/yacc.y
729
re.fre_max = htonl(list->max);
usr.bin/mklocale/yacc.y
730
re.fre_map = htonl(list->map);
usr.bin/mklocale/yacc.y
732
if (fwrite((char *)&re, sizeof(re), 1, fp) != 1)
usr.bin/rpcinfo/rpcinfo.c
965
rpcb_entry *re;
usr.bin/rpcinfo/rpcinfo.c
968
re = &head->rpcb_entry_map;
usr.bin/rpcinfo/rpcinfo.c
972
re->r_nc_protofmly, re->r_nc_proto,
usr.bin/rpcinfo/rpcinfo.c
973
re->r_nc_semantics == NC_TPI_CLTS ? "clts" :
usr.bin/rpcinfo/rpcinfo.c
974
re->r_nc_semantics == NC_TPI_COTS ? "cots" :
usr.bin/rpcinfo/rpcinfo.c
977
(void)printf("%-24s", re->r_maddr);
usr.bin/sed/compile.c
167
char re[_POSIX2_LINE_MAX + 1];
usr.bin/sed/compile.c
328
p = compile_delimited(p, re, 0);
usr.bin/sed/compile.c
333
if (*re == '\0')
usr.bin/sed/compile.c
334
cmd->u.s->re = NULL;
usr.bin/sed/compile.c
336
cmd->u.s->re = compile_re(re, 0);
usr.bin/sed/compile.c
342
if (*re == '\0')
usr.bin/sed/compile.c
343
cmd->u.s->re = NULL;
usr.bin/sed/compile.c
345
cmd->u.s->re = compile_re(re, cmd->u.s->icase);
usr.bin/sed/compile.c
453
compile_re(char *re, int case_insensitive)
usr.bin/sed/compile.c
463
parse_escapes(re);
usr.bin/sed/compile.c
464
if ((eval = regcomp(rep, re, flags)) != 0)
usr.bin/sed/compile.c
657
if (s->re != NULL &&
usr.bin/sed/compile.c
658
ref > s->re->re_nsub)
usr.bin/sed/compile.c
911
char *end, re[_POSIX2_LINE_MAX + 1];
usr.bin/sed/compile.c
922
p = compile_delimited(p, re, 0);
usr.bin/sed/compile.c
930
if (*re == '\0')
usr.bin/sed/compile.c
933
a->u.r = compile_re(re, icase);
usr.bin/sed/defs.h
69
regex_t *re; /* Regular expression */
usr.bin/sed/process.c
389
regex_t *re;
usr.bin/sed/process.c
395
re = cp->u.s->re;
usr.bin/sed/process.c
396
if (re == NULL) {
usr.bin/sed/process.c
403
if (!regexec_e(re, s, 0, 0, psl))
usr.bin/sed/process.c
436
} while (slen >= 0 && regexec_e(re, s, REG_NOTBOL, 0, (size_t)slen));
usr.bin/sed/process.c
449
if (!regexec_e(re, s, REG_NOTBOL, 0, (size_t)slen))
usr.bin/vgrind/regexp.c
158
convexp(char *re) /* unconverted irregular expression */
usr.bin/vgrind/regexp.c
163
if (re == NULL)
usr.bin/vgrind/regexp.c
165
if (*re == '\0')
usr.bin/vgrind/regexp.c
167
cre = malloc(4 * strlen(re) + 3);
usr.bin/vgrind/regexp.c
169
ure = re;
usr.bin/vgrind/regexp.c
357
char *re, /* a converted irregular expression */
usr.bin/vgrind/regexp.c
365
if (re == NULL)
usr.bin/vgrind/regexp.c
367
cs = re;