Home
last modified time | relevance | path

Searched refs:re1 (Results 1 – 17 of 17) sorted by relevance

/external/rust/crates/regex/tests/
Dconsistent.rs132 &(name1, ref re1): &(&str, $regex_type),
137 re1.clone(),
144 name1, re1, name2, re2, err
150 re1: $regex_type,
154 fn new(re1: $regex_type, re2: $regex_type) -> Self {
155 RegexEqualityTest { re1: re1, re2: re2 }
164 if self.re1.find(&input) != self.re2.find(input) {
171 let cap1 = self.re1.captures(input);
193 let fi1 = self.re1.find_iter(input);
204 let ci1 = self.re1.captures_iter(input);
[all …]
/external/dtc/tests/
Ddtbs_equal_unordered.c47 const struct fdt_reserve_entry *re1 = p1; in mem_rsv_cmp() local
50 if (fdt64_to_cpu(re1->address) < fdt64_to_cpu(re2->address)) in mem_rsv_cmp()
52 else if (fdt64_to_cpu(re1->address) > fdt64_to_cpu(re2->address)) in mem_rsv_cmp()
55 if (fdt64_to_cpu(re1->size) < fdt64_to_cpu(re2->size)) in mem_rsv_cmp()
57 else if (fdt64_to_cpu(re1->size) > fdt64_to_cpu(re2->size)) in mem_rsv_cmp()
/external/libxaac/decoder/
Dixheaacd_qmf_dec.c168 WORD16 re1, im1, im2; in ixheaacd_posttwdct2() local
177 re1 = ixheaacd_round16(ixheaacd_shl32(out_re1, (5 - 1))); in ixheaacd_posttwdct2()
179 *out_fwd++ = re1; in ixheaacd_posttwdct2()
194 re1 = ixheaacd_round16(ixheaacd_shl32(out_re, (5 - 1))); in ixheaacd_posttwdct2()
198 *out_fwd++ = re1; in ixheaacd_posttwdct2()
199 *out_rev2-- = re1; in ixheaacd_posttwdct2()
206 re1 = ixheaacd_round16(ixheaacd_shl32(out_re, (5 - 1))); in ixheaacd_posttwdct2()
208 *out_fwd++ = re1; in ixheaacd_posttwdct2()
209 *out_rev2-- = re1; in ixheaacd_posttwdct2()
280 WORD16 re1, im1, im2; in ixheaacd_posttwdct2_32() local
[all …]
Dixheaacd_ps_dec.c478 WORD32 re0, im0, re1, im1; in ixheaacd_decorrelation_dec() local
482 re1 = (p_left_real[5]); in ixheaacd_decorrelation_dec()
489 power_buf[0], ixheaacd_mult32x16in32(re1, (WORD16)(re1 >> 16))); in ixheaacd_decorrelation_dec()
495 re1 = (p_left_real[1]); in ixheaacd_decorrelation_dec()
502 power_buf[1], ixheaacd_mult32x16in32(re1, (WORD16)(re1 >> 16))); in ixheaacd_decorrelation_dec()
/external/llvm-project/flang/lib/Evaluate/
Dcomplex.cpp71 Part re1, im1; in Divide() local
73 re1 = re_.Add(bS, rounding).AccumulateFlags(flags); in Divide()
76 re1 = aS.Add(im_, rounding).AccumulateFlags(flags); in Divide()
79 Part re{re1.Divide(den, rounding).AccumulateFlags(flags)}; in Divide()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dparse.cc1277 Regexp* re1; in MaybeConcatString() local
1279 if ((re1 = stacktop_) == NULL || (re2 = re1->down_) == NULL) in MaybeConcatString()
1282 if (re1->op_ != kRegexpLiteral && re1->op_ != kRegexpLiteralString) in MaybeConcatString()
1286 if ((re1->parse_flags_ & FoldCase) != (re2->parse_flags_ & FoldCase)) in MaybeConcatString()
1299 if (re1->op_ == kRegexpLiteral) { in MaybeConcatString()
1300 re2->AddRuneToString(re1->rune_); in MaybeConcatString()
1302 for (int i = 0; i < re1->nrunes_; i++) in MaybeConcatString()
1303 re2->AddRuneToString(re1->runes_[i]); in MaybeConcatString()
1304 re1->nrunes_ = 0; in MaybeConcatString()
1305 delete[] re1->runes_; in MaybeConcatString()
[all …]
Dsimplify.cc153 static Regexp* Concat2(Regexp* re1, Regexp* re2, Regexp::ParseFlags flags);
565 Regexp* SimplifyWalker::Concat2(Regexp* re1, Regexp* re2, in Concat2() argument
570 subs[0] = re1; in Concat2()
/external/rust/crates/unicode-width/scripts/
Dunicode.py146 re1 = re.compile("^([0-9A-F]+);(\w+) +# (\w+)")
154 m = re1.match(line)
/external/rust/crates/unicode-segmentation/scripts/
Dunicode.py161 re1 = re.compile(r"^ *([0-9A-F]+) *; *(\w+)")
168 m = re1.match(line)
/external/icu/icu4c/source/test/intltest/
Dregextst.cpp1516 UnicodeString re1("abc[a-l][m-z]"); in API_Pattern() local
1521 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status); in API_Pattern()
1541 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status); in API_Pattern()
1547 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern()
2796 UText re1 = UTEXT_INITIALIZER; in API_Pattern_UTF8() local
2803 utext_openUTF8(&re1, str_abcalmz, -1, &status); in API_Pattern_UTF8()
2806 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status); in API_Pattern_UTF8()
2826 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
2832 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern_UTF8()
2850 utext_close(&re1); in API_Pattern_UTF8()
[all …]
/external/googletest/googletest/test/
Dgoogletest-port-test.cc871 const RE re1("a"); in TEST() local
872 EXPECT_TRUE(RE::FullMatch("a", re1)); in TEST()
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/
Dgoogletest-port-test.cc883 const RE re1("a"); in TEST() local
884 EXPECT_TRUE(RE::FullMatch("a", re1)); in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dre2_test.cc481 RE2 re1("(?:(?:(?:(?:(?:.)?){1})*)+)"); in TEST() local
489 ASSERT_EQ(3, re1.ProgramFanout(&histogram)); in TEST()
505 ASSERT_EQ(2, re1.ReverseProgramFanout(&histogram)); in TEST()
/external/hyphenation-patterns/sl/
Dhyph-sl.pat.txt784 re1
/external/icu/icu4c/source/data/translit/
DLatn_Bopo.txt1062 re1 ← ㄖㄜ;
/external/python/cpython2/Misc/
DHISTORY12973 was new in 1.5a3!) will be kept around as re1.py. The "old" regex
/external/python/cpython3/Misc/
DHISTORY30352 was new in 1.5a3!) will be kept around as re1.py. The "old" regex