HomeSort by relevance Sort by last modified time
    Searched defs:MV (Results 1 - 20 of 20) sorted by null

  /external/llvm/unittests/ADT/
MapVectorTest.cpp 17 MapVector<int, int> MV;
20 R = MV.insert(std::make_pair(1, 2));
21 ASSERT_EQ(R.first, MV.begin());
26 R = MV.insert(std::make_pair(1, 3));
27 ASSERT_EQ(R.first, MV.begin());
32 R = MV.insert(std::make_pair(4, 5));
33 ASSERT_NE(R.first, MV.end());
38 EXPECT_EQ(MV.size(), 2u);
39 EXPECT_EQ(MV[1], 2);
40 EXPECT_EQ(MV[4], 5)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
mv.h 24 } MV;
29 MV as_mv;
  /external/libvpx/libvpx/vp8/common/
mv.h 24 } MV;
29 MV as_mv;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
mv.h 24 } MV;
29 MV as_mv;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_mv.h 22 typedef struct mv { struct
25 } MV;
29 MV as_mv;
37 static INLINE int is_zero_mv(const MV *mv) {
38 return *((const uint32_t *)mv) == 0;
41 static INLINE int is_equal_mv(const MV *a, const MV *b) {
45 static INLINE void clamp_mv(MV *mv, int min_col, int max_col
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_mv.h 22 typedef struct mv { struct
25 } MV;
29 MV as_mv;
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
39 mv->col = clamp(mv->col, min_col, max_col);
40 mv->row = clamp(mv->row, min_row, max_row);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_mv.h 22 typedef struct mv { struct
25 } MV;
29 MV as_mv;
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
39 mv->col = clamp(mv->col, min_col, max_col);
40 mv->row = clamp(mv->row, min_row, max_row);
  /hardware/ti/omap4-aah/domx/make/
start.mk 82 MV = mv $(1) $(2)
  /hardware/ti/omap4xxx/domx/make/
start.mk 82 MV = mv $(1) $(2)
  /external/chromium_org/native_client_sdk/src/tools/
common.mk 189 MV := $(OSHELPERS) mv
194 MV := @$(OSHELPERS) mv
  /external/eigen/blas/testing/
cblat2.f     [all...]
cblat3.f     [all...]
dblat2.f     [all...]
dblat3.f     [all...]
sblat2.f     [all...]
sblat3.f     [all...]
zblat2.f     [all...]
zblat3.f     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 785 MV(new String[]{
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]

Completed in 3947 milliseconds