Home
last modified time | relevance | path

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

/external/vboot_reference/cgpt/
Dcgpt.c57 int match_count = 0; in main() local
80 match_count = 1; in main()
86 match_count++; in main()
90 if (match_count == 1) in main()
/external/llvm-project/lldb/examples/darwin/heap_find/heap/
Dheap_find.cpp168 uint32_t match_count; member
554 ++info->match_count; in range_info_callback()
577 ++info->match_count; in range_info_callback()
626 ++info->match_count; in range_info_callback()
734 data_info.match_count = 0; // Initialize the match count to zero in find_pointer_in_heap()
760 data_info.match_count = 0; // Initialize the match count to zero in find_pointer_in_memory()
782 data_info.match_count = 0; // Initialize the match count to zero in find_objc_objects_in_memory()
805 data_info.match_count = 0; // Initialize the match count to zero in get_heap_info()
847 data_info.match_count = 0; // Initialize the match count to zero in find_cstring_in_heap()
867 data_info.match_count = 0; // Initialize the match count to zero in find_block_for_address()
/external/rust/crates/aho-corasick/src/
Dautomaton.rs149 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()
Ddfa.rs192 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
Dnfa.rs261 fn match_count(&self, id: S) -> usize { in match_count() method
/external/autotest/client/site_tests/touch_WakeupSource/
Dtouch_WakeupSource.py75 match_count = utils.run('ls %s 2>/dev/null | wc -l' % (
77 if int(match_count) > 0:
/external/llvm-project/lldb/tools/darwin-threads/
Dexamine-threads.c44 int match_count = 0; in get_pid_for_process_name() local
53 match_count++; in get_pid_for_process_name()
60 if (match_count == 0) { in get_pid_for_process_name()
64 if (match_count > 1) { in get_pid_for_process_name()
/external/libxaac/decoder/drc_src/
Dimpd_drc_selection_process_drcset_selection.c557 FLOAT32 match_count; in impd_match_drc_characteristic_attempt() local
599 match_count = 0; in impd_match_drc_characteristic_attempt()
612 match_count += 1.0f; in impd_match_drc_characteristic_attempt()
614 match_count += 0.75f; in impd_match_drc_characteristic_attempt()
616 match_count += 0.5f; in impd_match_drc_characteristic_attempt()
644 match_count += 1.0f; in impd_match_drc_characteristic_attempt()
646 match_count += 0.75f; in impd_match_drc_characteristic_attempt()
648 match_count += 0.5; in impd_match_drc_characteristic_attempt()
654 if ((ref_count > 0) && (((FLOAT32)match_count) > 0.5f * ref_count)) { in impd_match_drc_characteristic_attempt()
/external/toolchain-utils/
Dchromiumos_image_diff.py191 match_count = 0
245 match_count += 1
250 '** COOL, ALL {0} BINARIES MATCHED!! **'.format(match_count))
/external/llvm-project/lldb/source/Commands/
DCommandObjectHelp.cpp177 const size_t match_count = matches.GetSize(); in DoExecute() local
178 for (size_t i = 0; i < match_count; i++) { in DoExecute()
/external/pcre/dist2/src/
Dpcre2_dfa_match.c540 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()
3181 match_count < 0) /* no matches */ in internal_dfa_match()
3193 match_count = PCRE2_ERROR_PARTIAL; in internal_dfa_match()
3205 if (match_count >= 0 && in internal_dfa_match()
[all …]
/external/selinux/libselinux/src/
Dlabel_file.c902 size_t *match_count) in lookup_all() argument
914 if (match_count) { in lookup_all()
915 *match_count = 0; in lookup_all()
983 if (match_count) { in lookup_all()
984 result[*match_count] = spec; in lookup_all()
985 *match_count += 1; in lookup_all()
/external/llvm-project/lldb/source/Symbol/
DSymbolContext.cpp1288 uint32_t match_count = 0; in NumLineEntriesWithLine() local
1292 ++match_count; in NumLineEntriesWithLine()
1294 return match_count; in NumLineEntriesWithLine()
/external/webrtc/examples/objc/AppRTCMobile/third_party/SocketRocket/
DSRWebSocket.m1154 __block size_t match_count = 0;
1159 if (((const unsigned char *)buffer)[i] == ((const unsigned char *)bytes)[match_count]) {
1160 match_count += 1;
1161 if (match_count == length) {
1166 match_count = 0;
/external/llvm-project/lldb/source/Target/
DPlatform.cpp1005 uint32_t match_count = 0; in FindProcesses() local
1007 match_count = Host::FindProcesses(match_info, process_infos); in FindProcesses()
1008 return match_count; in FindProcesses()
/external/protobuf/src/google/protobuf/util/
Dmessage_differencer.cc1615 int match_count = matcher.FindMaximumMatch(early_return); in MatchRepeatedFieldIndices() local
1616 if (match_count != count1 && early_return) return false; in MatchRepeatedFieldIndices()
1617 success = success && (match_count == count1); in MatchRepeatedFieldIndices()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARFDebugMap.cpp840 const size_t match_count = indexes.size(); in PrivateFindGlobalVariables() local
841 for (size_t i = 0; i < match_count; ++i) { in PrivateFindGlobalVariables()