Home
last modified time | relevance | path

Searched refs:match_indices (Results 1 – 25 of 260) sorted by relevance

1234567891011

/dports/lang/mono/mono-5.10.1.57/tools/sgen/
H A Dsgen-grep-binprot.c241 index_color (int index, int num_nums, int *match_indices) in index_color() argument
245 if (index == match_indices [result]) in index_color()
274 pes [0].color = index_color(0, num_nums, match_indices); \
284 pes [0].color = index_color(0, num_nums, match_indices); \
288 pes [1].color = index_color(1, num_nums, match_indices); \
298 pes [0].color = index_color(0, num_nums, match_indices); \
302 pes [1].color = index_color(1, num_nums, match_indices); \
306 pes [2].color = index_color(2, num_nums, match_indices); \
316 pes [0].color = index_color(0, num_nums, match_indices); \
320 pes [1].color = index_color(1, num_nums, match_indices); \
[all …]
/dports/security/py-angr/angr-9.0.5405/angr/storage/memory_mixins/
H A Dsmart_find_mixin.py26 match_indices = []
36 match_indices.append(i*stride)
60 return cases[0][1], constraints, match_indices
62 return self._find_process_cases(cases, match_indices, constraints, default, **kwargs)
108 def _find_process_cases(self, cases, match_indices, constraints, default, **kwargs): argument
114 return result, constraints, match_indices
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/registration/include/pcl/registration/impl/
H A Dia_fpcs.hpp689 pcl::Indices match_indices(4); in determineBaseMatches() local
691 match_indices[0] = in determineBaseMatches()
693 match_indices[1] = in determineBaseMatches()
695 match_indices[2] = pair.index_match; in determineBaseMatches()
696 match_indices[3] = pair.index_query; in determineBaseMatches()
702 matches.push_back(match_indices); in determineBaseMatches()
718 pcl::euclideanDistance((*input_)[match_indices[0]], (*input_)[match_indices[2]]); in checkBaseMatch()
720 pcl::euclideanDistance((*input_)[match_indices[0]], (*input_)[match_indices[3]]); in checkBaseMatch()
722 pcl::euclideanDistance((*input_)[match_indices[1]], (*input_)[match_indices[2]]); in checkBaseMatch()
724 pcl::euclideanDistance((*input_)[match_indices[1]], (*input_)[match_indices[3]]); in checkBaseMatch()
[all …]
/dports/security/py-angr/angr-9.0.5405/angr/storage/memory_mixins/regioned_memory/
H A Dstatic_find_mixin.py28 match_indices = []
34 match_indices.append(i)
40 for index in match_indices:
42 return r_union, [ ], match_indices
/dports/misc/vxl/vxl-3.3.2/contrib/rpl/rrel/tests/
H A Dsimilarity_from_matches.cxx39 similarity_from_matches::fit_from_minimal_set( const std::vector<int>& match_indices, in fit_from_minimal_set() argument
42 assert( match_indices.size() == 2 ); in fit_from_minimal_set()
43 if ( matches_[match_indices[0]].point_id_ == matches_[match_indices[1]].point_id_ || in fit_from_minimal_set()
44 (matches_[match_indices[0]].to_loc_ - matches_[match_indices[1]].to_loc_).squared_magnitude() in fit_from_minimal_set()
58 double x = matches_[match_indices[i]].from_loc_[0]; in fit_from_minimal_set()
59 double y = matches_[match_indices[i]].from_loc_[1]; in fit_from_minimal_set()
60 double u = matches_[match_indices[i]].to_loc_[0]; in fit_from_minimal_set()
61 double v = matches_[match_indices[i]].to_loc_[1]; in fit_from_minimal_set()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/rtc_tools/frame_analyzer/
H A Dvideo_temporal_aligner.cc201 std::vector<size_t> match_indices; in FindMatchingFrameIndices() local
204 if (match_indices.empty()) { in FindMatchingFrameIndices()
206 match_indices.push_back( in FindMatchingFrameIndices()
209 match_indices.push_back(FindNextMatch( in FindMatchingFrameIndices()
210 test_frame, *looping_reference_video, match_indices.back())); in FindMatchingFrameIndices()
214 return match_indices; in FindMatchingFrameIndices()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/rtc_tools/frame_analyzer/
H A Dvideo_temporal_aligner.cc201 std::vector<size_t> match_indices; in FindMatchingFrameIndices() local
204 if (match_indices.empty()) { in FindMatchingFrameIndices()
206 match_indices.push_back( in FindMatchingFrameIndices()
209 match_indices.push_back(FindNextMatch( in FindMatchingFrameIndices()
210 test_frame, *looping_reference_video, match_indices.back())); in FindMatchingFrameIndices()
214 return match_indices; in FindMatchingFrameIndices()
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/issues/
H A Dissue-14919.rs46 fn match_indices<'a, M, T: IntoMatcher<'a, M>>(s: &'a str, from: T) -> MatchIndices<M> { in match_indices() function
53 match_indices(s, |c: char| c == 'b') in main()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/registration/include/pcl/registration/
H A Dia_fpcs.h394 checkBaseMatch(const pcl::Indices& match_indices, const float (&ds)[4]);
420 pcl::Indices& match_indices,
438 const pcl::Indices& match_indices,
/dports/lang/rust/rustc-1.58.1-src/src/tools/tidy/src/
H A Dpal.rs104 line_numbers = Some(contents.match_indices('\n').map(|(i, _)| i).collect());
159 let candidate_cfgs = contents.match_indices("cfg"); in parse_cfgs()
/dports/www/node10/node-v10.24.1/deps/v8/src/builtins/
H A Dbuiltins-regexp-gen.cc750 Node* match_indices; in RegExpPrototypeExecBodyWithoutResult() local
762 var_result.Bind(match_indices); in RegExpPrototypeExecBodyWithoutResult()
766 GotoIfNot(IsNull(match_indices), &successful_match); in RegExpPrototypeExecBodyWithoutResult()
803 Node* const match_indices = indices_or_null; in RegExpPrototypeExecBody() local
2183 match_indices, RegExpMatchInfo::kFirstCaptureIndex); in RegExpPrototypeSearchBodyFast()
2347 Branch(IsNull(match_indices), &return_singleton_array, in RegExpPrototypeSplitBody()
2399 Node* const match_indices = RegExpExecInternal( in RegExpPrototypeSplitBody() local
2410 match_indices, RegExpMatchInfo::kFirstCaptureIndex)); in RegExpPrototypeSplitBody()
2466 match_indices, reg, in RegExpPrototypeSplitBody()
2469 match_indices, reg, in RegExpPrototypeSplitBody()
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/misc/broot/broot-1.7.0/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/misc/broot/broot-1.7.0/cargo-crates/onig-6.2.0/src/
H A Dpattern.rs120 let v: Vec<(usize, &str)> = "hello 1234 12.34 3".match_indices(&pattern).collect(); in pattern_matches_with_index_returns_all_matches()
166 let matches: Vec<(usize, &str)> = "hello world".match_indices(&reg).collect(); in pattern_match_with_empty_matches()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/cargo-crates/rayon-1.4.0/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/devel/grcov/grcov-0.8.2/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/rayon-1.5.0/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/rayon-1.3.0/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()
/dports/devel/git-delta/delta-0.9.2/cargo-crates/onig-6.1.1/src/
H A Dpattern.rs120 let v: Vec<(usize, &str)> = "hello 1234 12.34 3".match_indices(&pattern).collect(); in pattern_matches_with_index_returns_all_matches()
166 let matches: Vec<(usize, &str)> = "hello world".match_indices(&reg).collect(); in pattern_match_with_empty_matches()
/dports/net-im/zkgroup/zkgroup-0.7.4/cargo-crates/rayon-1.5.1/tests/
H A Dstr.rs108 let serial: Vec<_> = string.match_indices(separator).collect(); in execute_strings_split()
112 let serial_fn: Vec<_> = string.match_indices(|c| c == separator).collect(); in execute_strings_split()

1234567891011