Home
last modified time | relevance | path

Searched refs:mvi (Results 1 – 8 of 8) sorted by relevance

/third_party/libnl/lib/route/link/
Dmacvlan.c66 struct macvlan_info *mvi; in macvlan_alloc() local
70 mvi = link->l_info; in macvlan_alloc()
71 for (i = 0; i < mvi->mvi_maccount; i++) in macvlan_alloc()
72 nl_addr_put(mvi->mvi_macaddr[i]); in macvlan_alloc()
73 free(mvi->mvi_macaddr); in macvlan_alloc()
74 memset(mvi, 0, sizeof(*mvi)); in macvlan_alloc()
76 if ((mvi = calloc(1, sizeof(*mvi))) == NULL) in macvlan_alloc()
79 link->l_info = mvi; in macvlan_alloc()
81 mvi->mvi_macmode = MACVLAN_MACADDR_SET; in macvlan_alloc()
90 struct macvlan_info *mvi; in macvlan_parse() local
[all …]
/third_party/ffmpeg/libavformat/
Dmvi.c43 MviDemuxContext *mvi = s->priv_data; in read_header() local
97mvi->get_int = (vst->codecpar->width * (int64_t)vst->codecpar->height < (1 << 16)) ? avio_rl16 : a… in read_header()
99 mvi->audio_frame_size = ((uint64_t)audio_data_size << MVI_FRAC_BITS) / frames_count; in read_header()
100 if (mvi->audio_frame_size <= 1 << MVI_FRAC_BITS - 1) { in read_header()
107mvi->audio_size_counter = (ast->codecpar->sample_rate * 830 / mvi->audio_frame_size - 1) * mvi->au… in read_header()
108 mvi->audio_size_left = audio_data_size; in read_header()
116 MviDemuxContext *mvi = s->priv_data; in read_packet() local
119 if (mvi->video_frame_size == 0) { in read_packet()
120 mvi->video_frame_size = (mvi->get_int)(pb); in read_packet()
121 if (mvi->audio_size_left == 0) in read_packet()
[all …]
DMakefile366 OBJS-$(CONFIG_MVI_DEMUXER) += mvi.o
/third_party/ffmpeg/libavcodec/
Dclearvideo.c76 MVInfo mvi; member
298 static MV mvi_predict(MVInfo *mvi, int mb_x, int mb_y, MV diff) in mvi_predict() argument
303 if (mvi->top) { in mvi_predict()
305 pred_mv = mvi->mv[mvi->mb_stride + mb_x - 1]; in mvi_predict()
309 } else if ((mb_x == 0) || (mb_x == mvi->mb_w - 1)) { in mvi_predict()
310 pred_mv = mvi->mv[mb_x]; in mvi_predict()
312 MV A = mvi->mv[mvi->mb_stride + mb_x - 1]; in mvi_predict()
313 MV B = mvi->mv[ mb_x ]; in mvi_predict()
314 MV C = mvi->mv[ mb_x + 1]; in mvi_predict()
321 left_mv = -((mb_x * mvi->mb_size)); in mvi_predict()
[all …]
/third_party/boost/boost/numeric/ublas/
Dmatrix_proxy.hpp2027 matrix_vector_indirect &operator = (const matrix_vector_indirect &mvi) { in operator =() argument
2029 vector_assign<scalar_assign> (*this, typename vector_temporary_traits<M>::type (mvi)); in operator =()
2033 matrix_vector_indirect &assign_temporary (matrix_vector_indirect &mvi) { in assign_temporary() argument
2035 vector_assign<scalar_assign> (*this, mvi); in assign_temporary()
2089 bool same_closure (const matrix_vector_indirect &mvi) const { in same_closure()
2090 return (*this).data_.same_closure (mvi.data_); in same_closure()
2095 bool operator == (const matrix_vector_indirect &mvi) const { in operator ==()
2096 return (*this).data_ == mvi.data_ && ia1_ == mvi.ia1_ && ia2_ == mvi.ia2_; in operator ==()
2101 void swap (matrix_vector_indirect mvi) { in swap() argument
2102 if (this != &mvi) { in swap()
[all …]
/third_party/ffmpeg/
DBUILD.gn1171 # "//third_party/ffmpeg/libavformat/mvi.c",
DChangelog173 - avformat/mvi: Check audio_data_size to be non negative
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZInstrInfo.td461 defm MVI : StoreSIPair<"mvi", 0x92, 0xEB52, truncstorei8, imm32zx8trunc>;