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

12345678910

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/python/tests/
H A Dregexp.py7 re = libxml2.regexpCompile("a|b") variable
8 if re.regexpExec("a") != 1:
11 if re.regexpExec("b") != 1:
14 if re.regexpExec("ab") != 0:
17 if re.regexpExec("") != 0:
20 if re.regexpIsDeterminist() != 1:
23 del re
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/scripts/
H A Dsecure-card43 -re ".*CONNECT.*\n" {
48 -re ".*CONNECT.*\r" {
53 -re ".*NO.*CARRIER" {
57 -re ".*NO.*DIAL.*TONE" {
61 -re ".*VOICE" {
65 -re ".*sscode:.*\n" {
68 -re ".*sscode:" {
70 expect_user -re "(.*)\n"
75 -re ".*Next.*:" {
77 expect_user -re "(
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dgolomb.h56 OPEN_READER(re, gb);
57 UPDATE_CACHE(re, gb);
58 buf=GET_CACHE(re, gb);
62 LAST_SKIP_BITS(re, gb, ff_golomb_vlc_len[buf]);
63 CLOSE_READER(re, gb);
70 LAST_SKIP_BITS(re, gb, 32 - log);
71 CLOSE_READER(re, gb);
84 OPEN_READER(re, gb);
85 UPDATE_CACHE(re, gb);
86 buf=GET_CACHE(re, g
[all...]
H A Drdft.c93 ev.re = data[0];
94 data[0] = ev.re+data[1];
95 data[1] = ev.re-data[1];
100 ev.re = k1*(data[i1 ]+data[i2 ]);
103 od.re = k2*(data[i1+1]+data[i2+1]);
105 data[i1 ] = ev.re + od.re*tcos[i] - od.im*tsin[i];
106 data[i1+1] = ev.im + od.im*tcos[i] + od.re*tsin[i];
107 data[i2 ] = ev.re - od.re*tco
[all...]
H A Dfft.c138 s->exptab[i].re = c1;
154 q->re = -s->exptab[l].im;
155 q->im = s->exptab[l].re;
157 q->re = -s->exptab[l + nblocks].im;
158 q->im = s->exptab[l + nblocks].re;
226 BF(a2.re, a0.re, a0.re, t5);\
229 BF(a3.re, a1.re, a
[all...]
H A Dmdct.c138 CMUL(z[j].re, z[j].im, *in2, *in1, tcos[k], tsin[k]);
148 CMUL(r0, i1, z[n8-k-1].im, z[n8-k-1].re, tsin[n8-k-1], tcos[n8-k-1]);
149 CMUL(r1, i0, z[n8+k ].im, z[n8+k ].re, tsin[n8+k ], tcos[n8+k ]);
150 z[n8-k-1].re = r0;
152 z[n8+k ].re = r1;
185 FFTSample re, im; local
199 re = -input[2*i+3*n4] - input[n3-1-2*i];
202 CMUL(x[j].re, x[j].im, re, im, -tcos[i], tsin[i]);
204 re
[all...]
H A Dmdec.c79 OPEN_READER(re, &a->gb);
82 UPDATE_CACHE(re, &a->gb);
83 GET_RL_VLC(level, run, re, &a->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
91 level = (level ^ SHOW_SBITS(re, &a->gb, 1)) - SHOW_SBITS(re, &a->gb, 1);
92 LAST_SKIP_BITS(re, &a->gb, 1);
95 run = SHOW_UBITS(re, &a->gb, 6)+1; LAST_SKIP_BITS(re, &a->gb, 6);
96 UPDATE_CACHE(re, &a->gb);
97 level = SHOW_SBITS(re,
[all...]
H A Dmpeg12.c630 OPEN_READER(re, &s->gb);
633 UPDATE_CACHE(re, &s->gb);
634 GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
643 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
644 LAST_SKIP_BITS(re, &s->gb, 1);
647 run = SHOW_UBITS(re, &s->gb, 6)+1; LAST_SKIP_BITS(re, &s->gb, 6);
648 UPDATE_CACHE(re, &s->gb);
649 level = SHOW_SBITS(re,
[all...]
H A Dbitstream.h515 OPEN_READER(re, s)
520 UPDATE_CACHE(re, s)
521 CLOSE_READER(re, s)
590 OPEN_READER(re, s)
596 UPDATE_CACHE(re, s)
597 CLOSE_READER(re, s)
611 OPEN_READER(re, s)
612 UPDATE_CACHE(re, s)
613 cache = GET_CACHE(re,s);
615 LAST_SKIP_BITS(re,
[all...]
H A Dmsmpeg4.c1678 OPEN_READER(re, &s->gb);
1680 UPDATE_CACHE(re, &s->gb);
1681 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2, 0);
1684 cache= GET_CACHE(re, &s->gb);
1689 if(s->msmpeg4_version!=1) LAST_SKIP_BITS(re, &s->gb, 2);
1690 UPDATE_CACHE(re, &s->gb);
1692 last= SHOW_UBITS(re, &s->gb, 1); SKIP_CACHE(re, &s->gb, 1);
1693 run= SHOW_UBITS(re, &s->gb, 6); SKIP_CACHE(re,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/
H A Dcheckstack.pl25 # $re is used for two matches:
26 # $& (whole re) matches the complete objdump line with the stack growth
30 my (@stack, $re, $x, $xs);
41 $re = qr/.*sub.*sp, sp, #(([0-9]{2}|[3-9])[0-9]{2})/o;
44 $re = qr/.*LINK (0x$x{1,5});$/o;
47 $re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%esp$/o;
50 $re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%rsp$/o;
53 $re = qr/.*adds.*r12=-(([0-9]{2}|[3-9])[0-9]{2}),r12/o;
57 $re = qr/.*(?:linkw %fp,|addaw )#-([0-9]{1,4})(?:,%sp)?$/o;
60 $re
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A Dcheckstack.pl23 # $re is used for two matches:
24 # $& (whole re) matches the complete objdump line with the stack growth
28 my (@stack, $re, $x, $xs);
39 $re = qr/.*sub.*sp, sp, #(([0-9]{2}|[3-9])[0-9]{2})/o;
42 $re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%esp$/o;
45 $re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%rsp$/o;
48 $re = qr/.*adds.*r12=-(([0-9]{2}|[3-9])[0-9]{2}),r12/o;
52 $re = qr/.*(?:linkw %fp,|addaw )#-([0-9]{1,4})(?:,%sp)?$/o;
55 $re = qr/.*daddiu.*sp,sp,-(([0-9]{2}|[3-9])[0-9]{2})/o;
58 $re
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/stf/
H A Dsambalib.py24 import sys, re, comfychair namespace
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_javadoc_merge4 import os, re, sys namespace
6 classre = re.compile(r'(?P<javadoc>(/\*\*([^/]|/[^*])*?\*/\s*)?)(?P<mods>public\s+((abstract)\s+)*)(?P<class_type>(class|interface)\s+)?(?P<class_name>\w+)\s*(?P<end>(extends|implements|{))', re.DOTALL)
7 fieldre = re.compile(r'(?P<javadoc>(/\*\*([^/]|/[^*])*?\*/\s*)?)(?P<mods>public\s+((abstract|final|static)\s+)*)(?P<field_type>\w+\s+)?(?P<field_name>\w+)(?P<params>\s*(\(.*?\)|=|;))', re.DOTALL)
8 paramre = re.compile(r'\s*(?:final\s*)?(?P<param_type>\w+(\[\])?)\s+(?P<param_name>\w+)\s*(?P<comma>,?)')
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/perlasm/
H A Dx86_64-xlate.pl68 sub re { subroutine
120 sub re { subroutine
144 sub re { subroutine
203 sub re { subroutine
238 sub re { subroutine
278 sub re { subroutine
298 sub re { subroutine
401 if ($label=label->re(\$line)) { print $label->out(); }
403 if (directive->re(\$line)) {
405 } elsif ($opcode=opcode->re(\
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/scripts/
H A Dunwcheck.py14 import re namespace
23 start_pattern = re.compile("<([^>]*)>: \[0x([0-9a-f]+)-0x([0-9a-f]+)\]")
24 rlen_pattern = re.compile(".*rlen=([0-9]+)")
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/ntlogon/
H A Dntlogon.py72 import re namespace
141 if re.search(r'(?i)' + hdrstring, ln):
145 x = re.match(r'([^#\r\n]*)', ln) # Determine the section
160 while not re.search(r'.*\[.*\].*', buf[idx]):
165 x = re.match(r'([^#\r\n]*)', buf[idx])
176 vardef = re.match(r'(.*)=(.*)', line)
208 line = re.sub(r'%' + varname + r'(\W)',
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/mm/
H A Dmem_pieces.c60 unsigned int end, rs, re; local
76 re = rs + rp->size;
77 if (must_exist && (start < rs || end > re)) {
85 if (end < re) {
93 rp[1].size = re - end;
96 if (end < re) {
98 rp->size = re - end;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dformat-scheme.c946 make_intersected_element (struct format_arg *re, argument
952 re->presence = FCT_REQUIRED;
954 re->presence = FCT_OPTIONAL;
959 re->type = e2->type;
960 if (re->type == FAT_LIST)
961 re->list = copy_list (e2->list);
965 re->type = e1->type;
966 if (re->type == FAT_LIST)
967 re->list = copy_list (e1->list);
974 re
1190 struct format_arg *re; local
1278 struct format_arg *re; local
1387 make_union_element(struct format_arg *re, const struct format_arg * e1, const struct format_arg * e2) argument
1577 struct format_arg *re; local
1612 struct format_arg *re; local
1634 struct format_arg *re; local
1652 struct format_arg *re; local
1674 struct format_arg *re; local
1699 struct format_arg *re; local
[all...]
H A Dformat-lisp.c943 make_intersected_element (struct format_arg *re, argument
949 re->presence = FCT_REQUIRED;
951 re->presence = FCT_OPTIONAL;
956 re->type = e2->type;
957 if (re->type == FAT_LIST)
958 re->list = copy_list (e2->list);
962 re->type = e1->type;
963 if (re->type == FAT_LIST)
964 re->list = copy_list (e1->list);
971 re
1177 struct format_arg *re; local
1265 struct format_arg *re; local
1374 make_union_element(struct format_arg *re, const struct format_arg * e1, const struct format_arg * e2) argument
1554 struct format_arg *re; local
1589 struct format_arg *re; local
1611 struct format_arg *re; local
1629 struct format_arg *re; local
1651 struct format_arg *re; local
1676 struct format_arg *re; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-python/avahi/
H A DServiceTypeDatabase.py.in24 import re
74 if re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+', key) and not re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+\[.*\]', key):
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/examples/spoolss/
H A Dpsec.py6 import sys, re, string namespace
69 match = re.match("(\d+) (\d+) (0[xX][\dA-Fa-f]+) (\S+)", acl)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/testsuite/server/
H A Dmasktest.exp30 -re "(...) (...) \[0-9\]+ mask=" {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/math-emu/
H A Ddp_div.c130 int re = xe - ye; local
152 re--;
155 DPNORMRET2(xs == ys ? 0 : 1, re, rm, "div", x, y);
H A Dsp_div.c130 int re = xe - ye; local
152 re--;
155 SPNORMRET2(xs == ys ? 0 : 1, re, rm, "div", x, y);

Completed in 225 milliseconds

12345678910