/third_party/ffmpeg/libavcodec/ |
D | h264_mvpred.h | 66 if (!MB_FIELD(sl) && IS_INTERLACED(sl->left_type[0])) { in fetch_diagonal_mv() 70 if (MB_FIELD(sl) && !IS_INTERLACED(sl->left_type[0])) { in fetch_diagonal_mv() 276 if (USES_LIST(sl->left_type[LTOP], 0)) { in pred_pskip_motion() 279 FIX_MV_MBAFF(sl->left_type[LTOP], left_ref, A, 0); in pred_pskip_motion() 282 } else if (sl->left_type[LTOP]) { in pred_pskip_motion() 423 sl->left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]]; in fill_decode_neighbors() 424 sl->left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]]; in fill_decode_neighbors() 432 sl->left_type[LTOP] = sl->left_type[LBOT] = 0; in fill_decode_neighbors() 439 sl->left_type[LTOP] = sl->left_type[LBOT] = 0; in fill_decode_neighbors() 449 int topleft_type, top_type, topright_type, left_type[LEFT_MBS]; in fill_decode_caches() local [all …]
|
D | h264_loopfilter.c | 252 int left_type = sl->left_type[LTOP]; in h264_filter_mb_fast_internal() local 275 if(left_type) in h264_filter_mb_fast_internal() 296 if(left_type){ in h264_filter_mb_fast_internal() 328 if(left_type){ in h264_filter_mb_fast_internal() 345 if(left_type){ in h264_filter_mb_fast_internal() 371 …int mask_edge0 = 3*((mask_edge1>>1) & ((5*left_type)>>5)&1); // (mb_type & (MB_TYPE_16x16 | MB_TYP… in h264_filter_mb_fast_internal() 377 if( IS_INTRA(left_type) ) in h264_filter_mb_fast_internal() 395 if(left_type) in h264_filter_mb_fast_internal() 484 const int mbm_type = dir == 0 ? sl->left_type[LTOP] : sl->top_type; in filter_mb_dir() 735 && IS_INTERLACED(mb_type ^ sl->left_type[LTOP]) in ff_h264_filter_mb() [all …]
|
D | h264_slice.c | 2239 int left_type[LEFT_MBS], in fill_filter_caches_inter() 2260 if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) { in fill_filter_caches_inter() 2261 if (USES_LIST(left_type[LTOP], list)) { in fill_filter_caches_inter() 2322 int top_type, left_type[LEFT_MBS]; in fill_filter_caches() local 2369 left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]]; in fill_filter_caches() 2370 left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]]; in fill_filter_caches() 2375 left_type[LTOP] = left_type[LBOT] = 0; in fill_filter_caches() 2380 left_type[LTOP] = left_type[LBOT] = 0; in fill_filter_caches() 2383 sl->left_type[LTOP] = left_type[LTOP]; in fill_filter_caches() 2384 sl->left_type[LBOT] = left_type[LBOT]; in fill_filter_caches() [all …]
|
D | h264_cabac.c | 1303 if (sl->left_type[LTOP] & (MB_TYPE_INTRA16x16|MB_TYPE_INTRA_PCM)) in decode_cabac_intra_mb_type() 1386 if (sl->left_type[LTOP] && h->chroma_pred_mode_table[mba_xy] != 0) in decode_cabac_mb_chroma_pre_mode() 1963 if (!IS_DIRECT(sl->left_type[LTOP] - 1)) in ff_h264_decode_mb_cabac() 2349 if (sl->left_type[LEFT(i)] && !IS_8x8DCT(sl->left_type[LEFT(i)])) { in ff_h264_decode_mb_cabac() 2366 if (sl->left_type[LEFT(i)] && !IS_8x8DCT(sl->left_type[LEFT(i)])) { in ff_h264_decode_mb_cabac() 2372 nnz_cache[3+8*12 + 2*8*i]= !IS_INTRA_PCM(sl->left_type[LEFT(i)]) ? 0 : 64; in ff_h264_decode_mb_cabac()
|
/third_party/boost/boost/multiprecision/ |
D | number.hpp | 1047 typedef typename Exp::left_type left_type; in do_assign() typedef 1048 do_assign(e.left(), typename left_type::tag_type()); in do_assign() 1054 typedef typename Exp::left_type left_type; in do_assign() typedef 1057 BOOST_CONSTEXPR int const left_depth = left_type::depth; in do_assign() 1076 do_add(e.left(), typename left_type::tag_type()); in do_assign() 1080 do_assign(e.left(), typename left_type::tag_type()); in do_assign() 1086 do_add(e.left(), typename left_type::tag_type()); in do_assign() 1092 typedef typename Exp::left_type left_type; in do_assign() typedef 1095 BOOST_CONSTEXPR int const left_depth = left_type::depth; in do_assign() 1114 do_subtract(e.left(), typename left_type::tag_type()); in do_assign() [all …]
|
/third_party/boost/boost/fusion/algorithm/transformation/ |
D | erase.hpp | 94 typedef iterator_range<seq_first_type, first_type> left_type; typedef 96 typedef joint_view<left_type, right_type> type; 110 typedef typename result_of::left_type left_type; in erase() typedef 114 left_type left( in erase() 129 typedef typename result_of::left_type left_type; in erase() typedef 133 left_type left(fusion::begin(seq), first); in erase()
|
D | insert_range.hpp | 30 typedef iterator_range<first_type, pos_type> left_type; typedef 32 typedef joint_view<left_type, Range> left_insert_type; 43 typedef typename result_of::left_type left_type; in insert_range() typedef 48 left_type left(fusion::begin(seq), convert_iterator<Position>::call(pos)); in insert_range()
|
D | insert.hpp | 34 typedef iterator_range<first_type, pos_type> left_type; typedef 37 typedef joint_view<left_type, single_view const> left_insert_type; 54 typedef typename result_of::left_type left_type; in insert() typedef 60 left_type left(fusion::begin(seq), convert_iterator<Position>::call(pos)); in insert()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
D | validate_logicals.cpp | 198 const uint32_t left_type = _.GetOperandTypeId(inst, 3); in LogicalsPass() local 220 if (result_type != left_type || result_type != right_type) in LogicalsPass() 244 const uint32_t left_type = _.GetOperandTypeId(inst, 2); in LogicalsPass() local 247 if (!left_type || in LogicalsPass() 248 (!_.IsIntScalarType(left_type) && !_.IsIntVectorType(left_type))) in LogicalsPass() 253 if (_.GetDimension(result_type) != _.GetDimension(left_type)) in LogicalsPass() 269 if (_.GetBitWidth(left_type) != _.GetBitWidth(right_type)) in LogicalsPass()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_logicals.cpp | 198 const uint32_t left_type = _.GetOperandTypeId(inst, 3); in LogicalsPass() local 220 if (result_type != left_type || result_type != right_type) in LogicalsPass() 244 const uint32_t left_type = _.GetOperandTypeId(inst, 2); in LogicalsPass() local 247 if (!left_type || in LogicalsPass() 248 (!_.IsIntScalarType(left_type) && !_.IsIntVectorType(left_type))) in LogicalsPass() 253 if (_.GetDimension(result_type) != _.GetDimension(left_type)) in LogicalsPass() 269 if (_.GetBitWidth(left_type) != _.GetBitWidth(right_type)) in LogicalsPass()
|
/third_party/spirv-tools/source/val/ |
D | validate_logicals.cpp | 198 const uint32_t left_type = _.GetOperandTypeId(inst, 3); in LogicalsPass() local 220 if (result_type != left_type || result_type != right_type) in LogicalsPass() 244 const uint32_t left_type = _.GetOperandTypeId(inst, 2); in LogicalsPass() local 247 if (!left_type || in LogicalsPass() 248 (!_.IsIntScalarType(left_type) && !_.IsIntVectorType(left_type))) in LogicalsPass() 253 if (_.GetDimension(result_type) != _.GetDimension(left_type)) in LogicalsPass() 269 if (_.GetBitWidth(left_type) != _.GetBitWidth(right_type)) in LogicalsPass()
|
/third_party/boost/boost/spirit/home/support/auto/ |
D | meta_create.hpp | 82 typedef typename remove_const_ref<T2>::type left_type; typedef 88 traits::not_is_unused<left_type> 89 , proto::result_of::make_expr<OpTag, left_type, right_type> 131 typedef typename remove_const_ref<T1>::type left_type; typedef 137 traits::not_is_unused<left_type> 138 , proto::result_of::make_expr<OpTag, left_type, right_type>
|
/third_party/boost/boost/multiprecision/detail/ |
D | number_base.hpp | 519 typedef typename arg_type<Arg1>::type left_type; typedef 520 typedef typename left_type::result_type left_result_type; 521 typedef typename left_type::result_type result_type; 635 BOOST_MP_CXX14_CONSTEXPR left_type left() const in left() 637 return left_type(arg); in left() 642 static const unsigned depth = left_type::depth + 1; 889 typedef typename arg_type<Arg1>::type left_type; typedef 891 typedef typename left_type::result_type left_result_type; 1007 BOOST_MP_CXX14_CONSTEXPR left_type left() const in left() 1009 return left_type(arg1); in left() [all …]
|
D | et_ops.hpp | 169 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… 172 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… in operator +() 176 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… 179 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… in operator +() 182 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… 185 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… in operator +() 189 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… 192 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… in operator +() 196 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… 199 …etail::expression<detail::multiply_immediates, Arg1, Arg2, Arg3, Arg4>::left_type, typename detail… in operator +() [all …]
|
/third_party/boost/boost/spirit/home/qi/operator/ |
D | difference.hpp | 40 typedef Left left_type; typedef 47 traits::attribute_of<left_type, Context, Iterator>::type
|
D | list.hpp | 43 typedef Left left_type; typedef
|
/third_party/boost/boost/xpressive/detail/core/matcher/ |
D | action_matcher.hpp | 73 typedef typename child_<Expr, 0>::type left_type; typedef 86 , reference_wrapper<left_type> 115 typedef typename child_<Expr, 0>::type left_type; typedef 123 function_type(typename proto::result_of::eval<left_type, Context>::type)
|
/third_party/boost/boost/spirit/home/x3/core/ |
D | parser.hpp | 88 typedef Left left_type; typedef 91 left_type::has_action || right_type::has_action;
|
/third_party/boost/boost/spirit/home/karma/operator/ |
D | list.hpp | 81 typedef Left left_type; typedef 85 left_type::properties::value
|
/third_party/boost/boost/spirit/home/support/ |
D | meta_compiler.hpp | 294 left_type; typedef 298 typedef generator<left_type, right_type> result_type;
|
/third_party/boost/libs/fusion/test/sequence/ |
D | tree.hpp | 34 typedef Left left_type; typedef
|
/third_party/boost/libs/spirit/doc/qi/ |
D | concepts.qbk | 225 [[`P::left_type`] [The left parser type.]] 236 * `traits::is_parser<P::left_type>::type` evaluates to `mpl::true_`
|
/third_party/boost/libs/spirit/doc/karma/ |
D | concepts.qbk | 236 [[`G::left_type`] [The left generator type.]] 247 * `traits::is_generator<G::left_type>::type` evaluates to `mpl::true_`
|
/third_party/boost/boost/xpressive/ |
D | match_results.hpp | 686 typedef typename proto::result_of::left<Arg>::type left_type; in let() typedef 688 typedef typename proto::result_of::value<left_type>::type arg_left_type; in let()
|
/third_party/boost/boost/spirit/home/x3/operator/detail/ |
D | sequence.hpp | 240 using Left = typename Parser::left_type; in parse_sequence()
|