Home
last modified time | relevance | path

Searched refs:vector_match (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/mojo/public/tools/chrome_ipc/
Dgenerate_mojom.py140 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/
Dvp9_mcomp.c2228 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() function
2379 tmp_mv->col = vector_match(hbuf, src_hbuf, b_width_log2_lookup[bsize]); in vp9_int_pro_motion_estimation()
2380 tmp_mv->row = vector_match(vbuf, src_vbuf, b_height_log2_lookup[bsize]); in vp9_int_pro_motion_estimation()
/external/libaom/libaom/av1/encoder/
Dmcomp.c1566 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() function
1712 vector_match(hbuf, src_hbuf, mi_size_wide_log2[bsize]); in av1_int_pro_motion_estimation()
1714 vector_match(vbuf, src_vbuf, mi_size_high_log2[bsize]); in av1_int_pro_motion_estimation()
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc5344 Matcher<const std::vector<int>&> vector_match = ElementsAre(1, 2); in TEST() local
5345 EXPECT_THAT(d, WhenSorted(vector_match)); in TEST()
5514 Matcher<const std::vector<int>&> vector_match = ElementsAre(1, 2, 3, 4, 5); in TEST() local
5515 EXPECT_THAT(s, WhenSorted(vector_match)); in TEST()