Home
last modified time | relevance | path

Searched refs:re (Results 1 – 25 of 170) sorted by relevance

1234567

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_regex.c99 pcre *re; in ngx_regex_compile() local
105 re = pcre_compile((const char *) rc->pattern.data, (int) rc->options, in ngx_regex_compile()
111 if (re == NULL) { in ngx_regex_compile()
133 rc->regex->code = re; in ngx_regex_compile()
147 n = pcre_fullinfo(re, NULL, PCRE_INFO_CAPTURECOUNT, &rc->captures); in ngx_regex_compile()
167 n = pcre_fullinfo(re, NULL, PCRE_INFO_NAMEENTRYSIZE, &rc->name_size); in ngx_regex_compile()
173 n = pcre_fullinfo(re, NULL, PCRE_INFO_NAMETABLE, &rc->names); in ngx_regex_compile()
202 ngx_regex_elt_t *re; in ngx_regex_exec_array() local
204 re = a->elts; in ngx_regex_exec_array()
208 n = ngx_regex_exec(re[i].regex, s, NULL, 0); in ngx_regex_exec_array()
[all …]
H A Dngx_regex.h52 #define ngx_regex_exec(re, s, captures, size) \ argument
53 pcre_exec(re->code, re->extra, (const char *) (s)->data, (s)->len, 0, 0, \
/f-stack/dpdk/drivers/event/sw/
H A Devent_ring.h70 rob_ring_enqueue(struct rob_ring *r, void *re) in rob_ring_enqueue() argument
79 r->ring[write & mask] = re; in rob_ring_enqueue()
85 rob_ring_dequeue(struct rob_ring *r, void **re) in rob_ring_dequeue() argument
93 *re = r->ring[read & mask]; in rob_ring_dequeue()
/f-stack/dpdk/devtools/
H A Dupdate_version_map_abi.py14 import re
20 func_line_regex = re.compile(r"\s*"
28 section_begin_regex = re.compile(r"\s*"
37 section_end_regex = re.compile(r"\s*"
179 if not re.match(r"\d{1,2}\.\d{1,2}", parsed.abi_version):
H A Dcheck-forbidden-tokens.awk56 re = "^\\+\\+\\+ b/" deny_folders[i];
57 if ($0 ~ re) {
/f-stack/freebsd/mips/ingenic/
H A Djz4780_pinctrl.c88 struct resource_list_entry *re; in jz4780_pinctrl_attach() local
101 re = resource_list_find(rs, SYS_RES_MEMORY, 0); in jz4780_pinctrl_attach()
102 if (re == NULL) in jz4780_pinctrl_attach()
124 phys = CHIP_REG_OFFSET(re->start, i); in jz4780_pinctrl_attach()
126 if (phys + size - 1 <= re->end) { in jz4780_pinctrl_attach()
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_rpcb_pxy.c867 rpcb_entry_t *re; local
987 re = &rl->rl_entries[rl->rl_cnt];
1004 re->re_more = p;
1009 if (B(re->re_more) == 0)
1018 re = &rl->rl_entries[rl->rl_cnt];
1385 rpcb_entry_t *re; local
1398 re = &rl->rl_entries[0];
1403 re = &rl->rl_entries[cnt];
1404 p = (char *)&re->re_maddr.xu_port;
1433 len = ((char *)re->re_more + 4) -
[all …]
/f-stack/freebsd/contrib/libfdt/
H A Dfdt_sw.c144 struct fdt_reserve_entry *re; in fdt_add_reservemap_entry() local
153 if ((offset + sizeof(*re)) > fdt_totalsize(fdt)) in fdt_add_reservemap_entry()
156 re = (struct fdt_reserve_entry *)((char *)fdt + offset); in fdt_add_reservemap_entry()
157 re->address = cpu_to_fdt64(addr); in fdt_add_reservemap_entry()
158 re->size = cpu_to_fdt64(size); in fdt_add_reservemap_entry()
160 fdt_set_off_dt_struct(fdt, offset + sizeof(*re)); in fdt_add_reservemap_entry()
H A Dfdt_rw.c176 struct fdt_reserve_entry *re; in fdt_add_mem_rsv() local
181 re = fdt_mem_rsv_w_(fdt, fdt_num_mem_rsv(fdt)); in fdt_add_mem_rsv()
182 err = fdt_splice_mem_rsv_(fdt, re, 0, 1); in fdt_add_mem_rsv()
186 re->address = cpu_to_fdt64(address); in fdt_add_mem_rsv()
187 re->size = cpu_to_fdt64(size); in fdt_add_mem_rsv()
193 struct fdt_reserve_entry *re = fdt_mem_rsv_w_(fdt, n); in fdt_del_mem_rsv() local
200 return fdt_splice_mem_rsv_(fdt, re, 1, 0); in fdt_del_mem_rsv()
/f-stack/freebsd/contrib/libsodium/packaging/dotnet-core/
H A Dprepare.py4 import re
61 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
85 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
109 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
119 m = re.fullmatch(r'([^.-]+)((([.][^.-]+)*)[.][^.-]+)?([-].*)?', recipe)
145 self.cachefile = os.path.join(CACHEDIR, re.sub(r'[^A-Za-z0-9.]', '-', self.url))
166 …m = re.fullmatch(r'((\d+\.\d+\.\d+)(\.\d+)?)(?:-(\w+(?:[_.-]\w+)*))?', args[1]) if len(args) == 2 …
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_referer_module.c589 ngx_regex_elt_t *re; in ngx_http_add_regex_referer() local
605 re = ngx_array_push(rlcf->regex); in ngx_http_add_regex_referer()
606 if (re == NULL) { in ngx_http_add_regex_referer()
626 re->regex = rc.regex; in ngx_http_add_regex_referer()
627 re->name = name->data; in ngx_http_add_regex_referer()
649 ngx_regex_elt_t *re; in ngx_http_add_regex_server_name() local
659 re = ngx_array_push(rlcf->server_name_regex); in ngx_http_add_regex_server_name()
660 if (re == NULL) { in ngx_http_add_regex_server_name()
664 re->regex = regex->regex; in ngx_http_add_regex_server_name()
665 re->name = regex->name.data; in ngx_http_add_regex_server_name()
/f-stack/dpdk/lib/librte_bpf/
H A Dbpf_load_elf.c184 process_reloc(Elf *elf, size_t sym_idx, Elf64_Rel *re, size_t re_sz, in process_reloc() argument
205 n = re_sz / sizeof(re[0]); in process_reloc()
208 ofs = re[i].r_offset; in process_reloc()
211 sym = ELF64_R_SYM(re[i].r_info); in process_reloc()
237 Elf64_Rel *re; in elf_reloc_code() local
255 sd->d_size % sizeof(re[0]) != 0) in elf_reloc_code()
/f-stack/app/nginx-1.16.1/src/stream/
H A Dngx_stream_variables.c966 ngx_stream_regex_t *re; in ngx_stream_regex_compile() local
978 if (re == NULL) { in ngx_stream_regex_compile()
982 re->regex = rc->regex; in ngx_stream_regex_compile()
983 re->ncaptures = rc->captures; in ngx_stream_regex_compile()
984 re->name = rc->pattern; in ngx_stream_regex_compile()
992 return re; in ngx_stream_regex_compile()
1000 re->variables = rv; in ngx_stream_regex_compile()
1001 re->nvariables = n; in ngx_stream_regex_compile()
1027 return re; in ngx_stream_regex_compile()
1042 if (re->ncaptures) { in ngx_stream_regex_exec()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/gpio/
H A Dmrvl-gpio.txt10 There're three gpio interrupts in arch-pxa, and they're gpio0,
11 gpio1 and gpio_mux. There're only one gpio interrupt in arch-mmp,
/f-stack/freebsd/contrib/openzfs/tests/test-runner/bin/
H A Dzts-report.py.in22 import re
299 m = re.match(pattern, line)
307 m = re.match(pattern_log, line)
/f-stack/dpdk/app/test/
H A Dautotest_runner.py11 import re
36 re.match(r"node(\d+)", os.path.basename(node))
47 r = re.compile(r"cpu(\d+)")
211 self.avail_cmds = re.findall('test_register_(\w+)', symbols)
/f-stack/freebsd/contrib/zstd/examples/
H A DREADME.md17 minimizes malloc()/free() calls by re-using existing resources.
31 reducing impact of malloc()/free() and memset() by re-using existing resources.
/f-stack/app/nginx-1.16.1/auto/lib/pcre/
H A Dconf106 ngx_feature_test="pcre *re;
107 re = pcre_compile(NULL, 0, NULL, 0, NULL);
108 if (re == NULL) return 1"
/f-stack/freebsd/contrib/openzfs/cmd/dbufstat/
H A Ddbufstat.in36 import re
446 if re.match("(?:" + filters[key] + r")\Z", val) is None:
605 re.compile("(?:" + f[1] + r")\Z")
606 except re.error:
/f-stack/dpdk/usertools/
H A Ddpdk-hugepages.py9 import re
30 match = re.match(r'(\d+)([' + BINARY_PREFIX + r']?)$', arg.upper())
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_variables.c2429 ngx_http_regex_t *re; in ngx_http_regex_compile() local
2441 if (re == NULL) { in ngx_http_regex_compile()
2445 re->regex = rc->regex; in ngx_http_regex_compile()
2446 re->ncaptures = rc->captures; in ngx_http_regex_compile()
2447 re->name = rc->pattern; in ngx_http_regex_compile()
2455 return re; in ngx_http_regex_compile()
2463 re->variables = rv; in ngx_http_regex_compile()
2464 re->nvariables = n; in ngx_http_regex_compile()
2490 return re; in ngx_http_regex_compile()
2504 if (re->ncaptures) { in ngx_http_regex_exec()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/interrupt-controller/
H A Daspeed,ast2400-vic.txt4 AST2500 SoC families include a legacy register layout before a re-designed
/f-stack/freebsd/contrib/openzfs/config/
H A Ddeb.am8 "*** re-run configure, and try again.\n"; \
15 "*** re-run configure, and try again.\n"; \
/f-stack/freebsd/contrib/openzfs/etc/init.d/
H A DREADME.md30 suspect that what you're writing/modifying won't work on anything else
36 If you're making your own distribution and you want the scripts to
/f-stack/freebsd/contrib/openzfs/rpm/generic/
H A Dzfs-dkms.spec.in92 # If we're here then we're doing an uninstall (not upgrade).

1234567