/third_party/spirv-tools/test/diff/ |
D | lcs_test.cpp | 33 size_t match_count = in VerifyMatch() local 36 EXPECT_EQ(match_count, expected_match_count); in VerifyMatch() 68 size_t match_count = in TEST() local 71 EXPECT_EQ(match_count, 0u); in TEST() 82 size_t match_count = in TEST() local 85 EXPECT_EQ(match_count, 0u); in TEST() 96 size_t match_count = in TEST() local 99 EXPECT_EQ(match_count, 0u); in TEST() 110 size_t match_count = in TEST() local 113 EXPECT_EQ(match_count, 6u); in TEST() [all …]
|
/third_party/musl/libc-test/src/regression/ |
D | scanf-match-literal-eof.c | 9 int match_count; in main() local 11 match_count = sscanf(buf, "a"); in main() 12 if(match_count != EOF) in main()
|
/third_party/ffmpeg/libavcodec/ |
D | dv_error_marker_bsf.c | 70 int match_count = 0; in dv_error_marker_filter() local 89 match_count ++; in dv_error_marker_filter() 92 …_LOG_DEBUG, "%8"PRId64": Replaced %5d blocks by color %X\n", pkt->pts, match_count, AV_RB32(s->col… in dv_error_marker_filter()
|
D | h264_mvpred.h | 106 int diagonal_ref, match_count; in pred_motion() local 119 match_count = (diagonal_ref == ref) + (top_ref == ref) + (left_ref == ref); in pred_motion() 120 ff_tlog(h->avctx, "pred_motion match_count=%d\n", match_count); in pred_motion() 121 if (match_count > 1) { //most common in pred_motion() 124 } else if (match_count == 1) { in pred_motion() 263 int top_ref, left_ref, diagonal_ref, match_count, mx, my; in pred_pskip_motion() local 326 match_count = !diagonal_ref + !top_ref + !left_ref; in pred_pskip_motion() 327 ff_tlog(h->avctx, "pred_pskip_motion match_count=%d\n", match_count); in pred_pskip_motion() 328 if (match_count > 1) { in pred_pskip_motion() 331 } else if (match_count == 1) { in pred_pskip_motion()
|
D | h264_direct.c | 242 int match_count = (left_ref == ref[list]) + in pred_spatial_direct_motion() local 246 if (match_count > 1) { // most common in pred_spatial_direct_motion() 250 assert(match_count == 1); in pred_spatial_direct_motion()
|
D | svq3.c | 387 int diagonal_ref, match_count; in svq3_pred_motion() local 398 match_count = (diagonal_ref == ref) + (top_ref == ref) + (left_ref == ref); in svq3_pred_motion() 399 if (match_count > 1) { //most common in svq3_pred_motion() 402 } else if (match_count == 1) { in svq3_pred_motion()
|
/third_party/rust/crates/aho-corasick/src/ |
D | dfa.rs | 192 fn match_count(&self, id: S) -> usize { in match_count() method 193 self.repr().match_count(id) in match_count() 251 fn match_count(&self, id: S) -> usize { in match_count() method 252 self.repr().match_count(id) in match_count() 319 fn match_count(&self, id: S) -> usize { in match_count() method 386 fn match_count(&self, id: S) -> usize { in match_count() method 471 fn match_count(&self, id: S) -> usize { in match_count() method
|
D | automaton.rs | 149 fn match_count(&self, id: Self::ID) -> usize; in match_count() method 487 let match_count = self.match_count(*state_id); in overlapping_find_at() localVariable 488 if *match_index < match_count { in overlapping_find_at()
|
D | nfa.rs | 261 fn match_count(&self, id: S) -> usize { in match_count() method
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_dfa_match.c | 540 int active_count, new_count, match_count; in internal_dfa_match() local 570 match_count = PCRE2_ERROR_NOMATCH; /* A negative number */ in internal_dfa_match() 886 if (match_count < 0) match_count = (offsetcount >= 2)? 1 : 0; in internal_dfa_match() 887 else if (match_count > 0 && ++match_count * 2 > (int)offsetcount) in internal_dfa_match() 888 match_count = 0; in internal_dfa_match() 889 count = ((match_count == 0)? (int)offsetcount : match_count * 2) - 2; in internal_dfa_match() 897 if ((mb->moptions & PCRE2_DFA_SHORTEST) != 0) return match_count; in internal_dfa_match() 3238 match_count < 0) /* no matches */ in internal_dfa_match() 3250 match_count = PCRE2_ERROR_PARTIAL; in internal_dfa_match() 3262 if (match_count >= 0 && in internal_dfa_match() [all …]
|
/third_party/selinux/libselinux/src/ |
D | label_file.c | 926 size_t *match_count) in lookup_all() argument 939 if (match_count) { in lookup_all() 940 *match_count = 0; in lookup_all() 1034 if (match_count) { in lookup_all() 1035 result[*match_count] = spec; in lookup_all() 1036 *match_count += 1; in lookup_all()
|
/third_party/glib/patch/ |
D | backport-gregex-Add-G_REGEX_DEFAULT-G_REGEX_MATCH_DEFAULT.patch | 192 gint match_count; 267 gint match_count; 277 guint i, match_count;
|
/third_party/libphonenumber/cpp/test/phonenumbers/ |
D | phonenumbermatcher_test.cc | 325 int match_count = 0; in EnsureTermination() local 329 ++match_count; in EnsureTermination() 334 ASSERT_LT(match_count, 10); in EnsureTermination()
|
/third_party/protobuf/src/google/protobuf/util/ |
D | message_differencer.cc | 1623 int match_count = matcher.FindMaximumMatch(early_return); in MatchRepeatedFieldIndices() local 1624 if (match_count != count1 && early_return) return false; in MatchRepeatedFieldIndices() 1625 success = success && (match_count == count1); in MatchRepeatedFieldIndices()
|
/third_party/openh264/codec/decoder/core/src/ |
D | mv_pred.cpp | 536 … uint32_t match_count = (iLeftRef[listIdx] == ref[listIdx]) + (iTopRef[listIdx] == ref[listIdx]) + in PredMvBDirectSpatial() local 538 if (match_count == 1) { in PredMvBDirectSpatial()
|