Searched defs:match_count (Results 1 - 3 of 3) sorted by relevance

/external/vboot_reference/cgpt/
H A Dcgpt.c57 int match_count = 0; local
80 match_count = 1;
86 match_count++;
90 if (match_count == 1)
/external/pcre/dist2/src/
H A Dpcre2_dfa_match.c386 int active_count, new_count, match_count; local
414 match_count = PCRE2_ERROR_NOMATCH; /* A negative number */
733 if (match_count < 0) match_count = (offsetcount >= 2)? 1 : 0;
734 else if (match_count > 0 && ++match_count * 2 > (int)offsetcount)
735 match_count = 0;
736 count = ((match_count == 0)? (int)offsetcount : match_count * 2) - 2;
744 if ((mb->moptions & PCRE2_DFA_SHORTEST) != 0) return match_count;
[all...]
/external/protobuf/src/google/protobuf/util/
H A Dmessage_differencer.cc1399 int match_count = matcher.FindMaximumMatch(early_return); local
1400 if (match_count != count1 && reporter_ == NULL) return false;
1401 success = success && (match_count == count1);

Completed in 366 milliseconds