Searched refs:re (Results 1 - 25 of 241) sorted by relevance

12345678910

/freebsd-10.0-release/contrib/bmake/
H A Dfind_lib.sh2 re=$1; shift
6 found=`nm $lib | egrep "$re"`
/freebsd-10.0-release/lib/libc/locale/
H A Dnextwctype.c47 _RuneEntry *base, *re; local
68 re = base + (lim >> 1);
69 if (re->__min <= wc && wc <= re->__max)
71 else if (wc > re->__max) {
72 base = re + 1;
80 if (re->__min <= wc && wc <= re->__max) {
81 if (re->__types != NULL) {
82 for (; wc <= re
[all...]
H A Dtolower.c55 _RuneEntry *base, *re; local
63 re = base + (lim >> 1);
64 if (re->__min <= c && c <= re->__max)
65 return (re->__map + c - re->__min);
66 else if (c > re->__max) {
67 base = re + 1;
H A Dtoupper.c55 _RuneEntry *base, *re; local
63 re = base + (lim >> 1);
64 if (re->__min <= c && c <= re->__max)
66 return (re->__map + c - re->__min);
68 else if (c > re->__max) {
69 base = re + 1;
H A Drunetype.c53 _RuneEntry *base, *re; local
61 re = base + (lim >> 1);
62 if (re->__min <= c && c <= re->__max) {
63 if (re->__types)
64 return(re->__types[c - re->__min]);
66 return(re->__map);
67 } else if (c > re->__max) {
68 base = re
[all...]
/freebsd-10.0-release/contrib/serf/build/
H A Dgen_def.py27 import re
41 _funcs = re.compile(r'^(?:(?:\w+|\*) )+\*?(serf_[a-z][a-z_0-9]*)\(',
42 re.MULTILINE)
48 _types = re.compile(r'^extern const serf_bucket_type_t (serf_[a-z_]*);',
49 re.MULTILINE)
/freebsd-10.0-release/crypto/heimdal/lib/wind/
H A Drfc3454.py37 import re
50 m = re.search('^ *----- End Table ([A-Z0-9\.]+) ----- *$', l)
56 if re.search('^ *----- Start Table ([A-Z0-9\.]+) ----- *$', l):
H A DUnicodeData.py37 import re
48 l = re.sub('#.*$', '', l)
H A Dgen-punycode-examples.py37 import re
62 l2 = re.sub('^ *', '', l2)
65 if re.match('7\.2', l):
68 m = re.search('^ *\([A-Z]\) *(.*)$', l);
73 m = re.search('^ *([uU]+.*) *$', l)
77 m = re.search('^ *Punycode: (.*) *$', l)
81 if re.match('^7\.1', l):
118 string.join([re.sub('[uU]\+', '0x', x) for x in cp], ', '),
H A Dgen-bidi.py37 import re
83 m = re.search('^ *([0-9A-F]+)-([0-9A-F]+) *$', l)
90 m = re.search('^ *([0-9A-F]+) *$', l)
/freebsd-10.0-release/lib/libc/regex/grot/
H A DMakefile35 # Stuff that matters only if you're trying to lint the package.
46 re: $(OBJS)
67 r: re tests
68 ./re <tests
69 ./re -el <tests
70 ./re -er <tests
72 ra: ./re tests
73 -./re <tests
74 -./re -el <tests
75 -./re
[all...]
H A Dmain.c33 regex_t re; local
71 fprintf(stderr, "[-c copt][-C][-d] [re]\n");
80 err = regcomp(&re, argv[optind++], copts);
82 len = regerror(err, &re, erbuf, sizeof(erbuf));
87 regprint(&re, stdout);
90 regfree(&re);
98 err = regexec(&re, argv[optind], (size_t)NS, subs, eopts);
100 len = regerror(err, &re, erbuf, sizeof(erbuf));
142 regex_t re; local
188 re
214 regex_t re; local
506 regex_t re; local
[all...]
/freebsd-10.0-release/sys/xen/interface/foreign/
H A Dmkheader.py3 import sys, re;
69 fileid = re.sub("[-.]", "_", "__FOREIGN_%s__" % outfile.upper());
94 for line in re.findall("#define[^\n]+", input):
97 match = re.search(regex, line);
105 output += re.sub(regex, replace, line) + "\n";
109 input = re.sub("#define[^\n]+\n", "", input);
110 input = re.compile("/\*(.*?)\*/", re.S).sub("", input)
111 input = re.compile("\n\s*\n", re
[all...]
/freebsd-10.0-release/tools/debugscripts/
H A Dkld_deb.py32 import re
36 filenamere = re.compile(r'filename\s+=\s+0x[0-9a-f]+\s("(?P<fn>[^"]+)"|(?P<error><[^>]*>))', re.M)
37 addressre = re.compile(r'address\s+=\s+(?P<ad>0x[0-9a-f]+)', re.M)
38 nextre = re.compile(r'tqe_next\s+=\s+(?P<ad>0x[0-9a-f]+)', re.M)
39 printre = re.compile(r'\$\d+\s+=\s+')
69 def searchfor(inp, re, j = 0, l = None):
70 """searchfor(inp, re,
[all...]
/freebsd-10.0-release/usr.bin/m4/
H A Dgnum4.c246 exit_regerror(int er, regex_t *re) argument
251 errlen = regerror(er, re, NULL, 0);
254 regerror(er, re, errbuf, errlen);
259 add_sub(int n, const char *string, regex_t *re, regmatch_t *pm) argument
261 if (n > (int)re->re_nsub)
276 add_replace(const char *string, regex_t *re, const char *replace, regmatch_t *pm) argument
282 add_sub(0, string, re, pm);
293 add_sub(0, string, re, pm);
300 add_sub(*(++p) - '0', string, re, pm);
309 do_subst(const char *string, regex_t *re, cons argument
349 do_regexp(const char *string, regex_t *re, const char *replace, regmatch_t *pm) argument
366 do_regexpindex(const char *string, regex_t *re, regmatch_t *pm) argument
459 regex_t re; local
487 regex_t re; local
[all...]
/freebsd-10.0-release/sys/dev/safe/
H A Dsafe.c329 struct safe_ringentry *re = &sc->sc_ring[i]; local
331 re->re_desc.d_sa = raddr +
333 re->re_sa.sa_staterec = raddr +
549 struct safe_ringentry *re = sc->sc_back; local
553 safe_dump_request(sc, __func__, re);
563 if (re->re_desc.d_csr != 0) {
564 if (!SAFE_PE_CSR_IS_DONE(re->re_desc.d_csr))
566 if (!SAFE_PE_LEN_IS_DONE(re->re_desc.d_len))
569 safe_callback(sc, re);
603 safe_feed(struct safe_softc *sc, struct safe_ringentry *re) argument
856 struct safe_ringentry *re; local
1500 safe_callback(struct safe_softc *sc, struct safe_ringentry *re) argument
1975 struct safe_ringentry *re = sc->sc_back; local
1993 safe_free_entry(struct safe_softc *sc, struct safe_ringentry *re) argument
2110 safe_dump_request(struct safe_softc *sc, const char* tag, struct safe_ringentry *re) argument
2205 struct safe_ringentry *re = sc->sc_back; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DRegularExpression.cpp29 // Constructor that compiles "re" using "flags" and stores the
32 RegularExpression::RegularExpression(const char* re, int flags) : argument
39 Compile(re);
43 // Constructor that compiles "re" using "flags" and stores the
46 RegularExpression::RegularExpression(const char* re) : argument
53 Compile(re);
95 RegularExpression::Compile(const char* re) argument
97 return Compile (re, m_compile_flags);
101 RegularExpression::Compile(const char* re, int flags) argument
106 if (re
[all...]
/freebsd-10.0-release/sys/modules/re/
H A DMakefile3 .PATH: ${.CURDIR}/../../dev/re
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Bin/
H A Dvmstat.d18 * re page reclaims Kbytes
65 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
78 "w", "swap", "free", "re", "mf", "pi", "po", "fr", "sr",
88 vminfo:::pgrec { re += arg0; }
122 re *= `_pagesize / 1024;
131 this->w, this->swap, this->free, re, mf, pi, po, fr, sr,
135 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
H A Dvmstat-p.d17 * re page reclaims Kbytes
67 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
84 "swap", "free", "re", "mf", "sr");
93 vminfo:::pgrec { re += arg0; }
138 re *= `_pagesize / 1024;
146 this->swap, this->free, re, mf, sr);
151 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Mem/
H A Dvmstat.d18 * re page reclaims Kbytes
65 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
78 "w", "swap", "free", "re", "mf", "pi", "po", "fr", "sr",
88 vminfo:::pgrec { re += arg0; }
122 re *= `_pagesize / 1024;
131 this->w, this->swap, this->free, re, mf, pi, po, fr, sr,
135 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
/freebsd-10.0-release/sys/dev/ath/
H A Dif_ath_rx_edma.c190 struct ath_rx_edma *re = &sc->sc_rxedma[qtype]; local
196 i = re->m_fifo_head;
197 for (j = 0; j < re->m_fifo_depth; j++) {
198 bf = re->m_fifo[i];
206 INCR(i, re->m_fifolen);
210 if (i != re->m_fifo_tail) {
214 re->m_fifo_tail);
335 struct ath_rx_edma *re = &sc->sc_rxedma[qtype]; local
352 bf = re->m_fifo[re
727 struct ath_rx_edma *re = &sc->sc_rxedma[qtype]; local
794 struct ath_rx_edma *re = &sc->sc_rxedma[qtype]; local
828 struct ath_rx_edma *re = &sc->sc_rxedma[qtype]; local
865 struct ath_rx_edma *re = &sc->sc_rxedma[qtype]; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DRegularExpression.h95 /// Constructor that compiles \a re using \a flags and stores the
98 /// @param[in] re
106 RegularExpression (const char* re, int flags);
110 RegularExpression (const char* re);
134 /// @param[in] re
146 Compile (const char* re);
149 Compile (const char* re, int flags);
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dresres.c223 const rc_res_entry *re; local
225 for (re = rd->entries; re != NULL; re = re->next)
230 /* If we're at level 1, the key of this resource is the
234 type = &re->id;
238 /* If we're at level 2, the key of this resource is the name
240 name = &re->id;
244 /* If we're a
655 rc_res_entry *re = NULL; local
[all...]
/freebsd-10.0-release/games/fortune/tools/
H A Ddo_uniq.py7 import re, sys
21 f = re.sub('[\W_]', '', f)
23 f = re.sub(word, '', f)
24 # f = re.sub('[aeiouy]', '', f)
25 # f = re.sub('[^aeiouy]', '', f)

Completed in 178 milliseconds

12345678910