/external/vboot_reference/cgpt/ |
D | cgpt.c | 57 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/ |
D | heap_find.cpp | 168 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/ |
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 | 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 | nfa.rs | 261 fn match_count(&self, id: S) -> usize { in match_count() method
|
/external/autotest/client/site_tests/touch_WakeupSource/ |
D | touch_WakeupSource.py | 75 match_count = utils.run('ls %s 2>/dev/null | wc -l' % ( 77 if int(match_count) > 0:
|
/external/llvm-project/lldb/tools/darwin-threads/ |
D | examine-threads.c | 44 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/ |
D | impd_drc_selection_process_drcset_selection.c | 557 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/ |
D | chromiumos_image_diff.py | 191 match_count = 0 245 match_count += 1 250 '** COOL, ALL {0} BINARIES MATCHED!! **'.format(match_count))
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectHelp.cpp | 177 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/ |
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() 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/ |
D | label_file.c | 902 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/ |
D | SymbolContext.cpp | 1288 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/ |
D | SRWebSocket.m | 1154 __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/ |
D | Platform.cpp | 1005 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/ |
D | message_differencer.cc | 1615 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/ |
D | SymbolFileDWARFDebugMap.cpp | 840 const size_t match_count = indexes.size(); in PrivateFindGlobalVariables() local 841 for (size_t i = 0; i < match_count; ++i) { in PrivateFindGlobalVariables()
|