Searched refs:vector_match (Results 1 – 4 of 4) sorted by relevance
/external/libchrome/mojo/public/tools/chrome_ipc/ |
D | generate_mojom.py | 140 vector_match = _VECTOR_PATTERN.search(typename) 141 if vector_match: 142 return 'array<%s>' % self.lookup_type(vector_match.groups()[1].strip())
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 2055 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() function 2206 tmp_mv->col = vector_match(hbuf, src_hbuf, b_width_log2_lookup[bsize]); in vp9_int_pro_motion_estimation() 2207 tmp_mv->row = vector_match(vbuf, src_vbuf, b_height_log2_lookup[bsize]); in vp9_int_pro_motion_estimation()
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 2100 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() function 2248 tmp_mv->col = vector_match(hbuf, src_hbuf, mi_size_wide_log2[bsize]); in av1_int_pro_motion_estimation() 2249 tmp_mv->row = vector_match(vbuf, src_vbuf, mi_size_high_log2[bsize]); in av1_int_pro_motion_estimation()
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 5188 Matcher<const std::vector<int>&> vector_match = ElementsAre(1, 2); in TEST() local 5189 EXPECT_THAT(d, WhenSorted(vector_match)); in TEST() 5358 Matcher<const std::vector<int>&> vector_match = ElementsAre(1, 2, 3, 4, 5); in TEST() local 5359 EXPECT_THAT(s, WhenSorted(vector_match)); in TEST()
|