/external/libvpx/libvpx/vp8/encoder/ |
mcomp.c | 30 int vp8_mv_bit_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int Weight) 32 /* MV costing is based on the distribution of vectors in the previous 39 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * Weight) >> 7; 42 static int mv_err_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int error_per_bit) 44 /* Ignore mv costing if mvcost is NULL */ 46 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + 47 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) 52 static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvsadcost[2], int error_per_bit) 55 /* Ignore mv costing if mvsadcost is NULL * [all...] |
bitstream.c | 453 vp8_writer *w, const MV *mv, const int_mv *ref, const MV_CONTEXT *mvc 456 MV e; 457 e.row = mv->row - ref->as_mv.row; 458 e.col = mv->col - ref->as_mv.col; 576 * These specified to 8th pel as they are always compared to MV 657 write_mv(w, &mi->mv.as_mv, &best_mv, mvc); 680 blockmv = cpi->mb.partition_info->bmi[j].mv; [all...] |
firstpass.c | 437 int_mv *ref_mv, MV *best_mv, 462 /* Initial step/diamond search centred on best mv */ 571 /* Initialise the MV cost table to the defaults */ 620 * estimate fot the mv. When the error score is very low this 623 * 0,0 mv to the intra case. 640 MV tmp_mv = {0, 0}; 645 /* Simple 0,0 motion with no mv overhead */ 649 d->bmi.mv.as_mv.row = 0; 650 d->bmi.mv.as_mv.col = 0; 655 /* Test last reference frame using the previous best mv as th [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
mcomp.c | 26 int vp8_mv_bit_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int Weight) 28 /* MV costing is based on the distribution of vectors in the previous 35 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * Weight) >> 7; 38 static int mv_err_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int error_per_bit) 40 /* Ignore mv costing if mvcost is NULL */ 42 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + 43 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) 48 static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvsadcost[2], int error_per_bit) 51 /* Ignore mv costing if mvsadcost is NULL * [all...] |
bitstream.c | 452 vp8_writer *w, const MV *mv, const int_mv *ref, const MV_CONTEXT *mvc 455 MV e; 456 e.row = mv->row - ref->as_mv.row; 457 e.col = mv->col - ref->as_mv.col; 575 * These specified to 8th pel as they are always compared to MV 656 write_mv(w, &mi->mv.as_mv, &best_mv, mvc); 679 blockmv = cpi->mb.partition_info->bmi[j].mv; [all...] |
firstpass.c | 37 extern void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, int_mv *mv); 436 int_mv *ref_mv, MV *best_mv, 461 /* Initial step/diamond search centred on best mv */ 570 /* Initialise the MV cost table to the defaults */ 619 * estimate fot the mv. When the error score is very low this 622 * 0,0 mv to the intra case. 639 MV tmp_mv = {0, 0}; 644 /* Simple 0,0 motion with no mv overhead */ 648 d->bmi.mv.as_mv.row = 0; 649 d->bmi.mv.as_mv.col = 0 [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_firstpass.c | 391 const MV *ref_mv, MV *best_mv, 394 MV tmp_mv = {0, 0}; 395 MV ref_mv_full = {ref_mv->row >> 3, ref_mv->col >> 3}; 415 // Center the initial step/diamond search on best mv. 505 const MV zero_mv = {0, 0}; 614 // all inter modes carry an overhead cost estimate for the mv. 617 // This penalty adds a cost matching that of a 0,0 mv to the intra case. 631 int_mv mv, tmp_mv; local 635 // Assume 0,0 motion with no mv overhead [all...] |
vp9_rdopt.c | [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
decodemv.c | 111 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) 113 mv->row = (short)(read_mvcomponent(r, mvc) * 2); 114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2); 268 leftmv.as_int = left_mb->mbmi.mv.as_int; 270 leftmv.as_int = (left_mb->bmi + k + 4 - 1)->mv.as_int; 273 leftmv.as_int = (mi->bmi + k - 1)->mv.as_int; 279 abovemv.as_int = above_mb->mbmi.mv.as_int; 281 abovemv.as_int = (above_mb->bmi + k + 16 - 4)->mv.as_int; 284 abovemv.as_int = (mi->bmi + k - 4)->mv.as_int [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_pickmode.c | 62 // if the size < 8x8 we get the mv from the bmi substructure, 93 ADD_MV_REF_LIST(candidate->mv[0], refmv_count, mv_ref_list, Done); 107 // If the candidate is INTRA we don't want to consider its mv. 132 const int step_param = cpi->sf.mv.fullpel_search_step_param; 134 MV mvp_full; 136 const MV ref_mv = x->mbmi_ext->ref_mvs[ref][0].as_mv; 193 cpi->sf.mv.subpel_force_stop, 194 cpi->sf.mv.subpel_iters_per_step, [all...] |
vp9_rdopt.c | [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
decodemv.c | 111 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) 113 mv->row = (short)(read_mvcomponent(r, mvc) * 2); 114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2); 268 leftmv.as_int = left_mb->mbmi.mv.as_int; 270 leftmv.as_int = (left_mb->bmi + k + 4 - 1)->mv.as_int; 273 leftmv.as_int = (mi->bmi + k - 1)->mv.as_int; 279 abovemv.as_int = above_mb->mbmi.mv.as_int; 281 abovemv.as_int = (above_mb->bmi + k + 16 - 4)->mv.as_int; 284 abovemv.as_int = (mi->bmi + k - 4)->mv.as_int [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonISelDAGToDAG.cpp | 780 uint64_t MV = 0, Bit = 1; 782 MV |= Bit; 785 SDValue Ones = CurDAG->getTargetConstant(MV, dl, MVT::i64); [all...] |
/external/selinux/policycoreutils/mcstrans/share/examples/nato/setrans.d/ |
rel.conf | 465 ~c200,~c340=MV # Maldives
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodeframe.c | 561 struct buf_2d *dst_buf, const MV* mv, 584 const MV mv_q4 = clamp_mv_to_umv_border_sb(xd, mv, bw, bh, 604 // Scale the MV and incorporate the sub-pixel offset of the block 618 scaled_mv.row = mv->row * (1 << (1 - pd->subsampling_y)); 619 scaled_mv.col = mv->col * (1 << (1 - pd->subsampling_x)); 740 const MV mv = average_split_mvs(pd, mi, ref, i++); local 743 sf, pre_buf, dst_buf, &mv, 748 const MV mv = mi->mbmi.mv[ref].as_mv; local [all...] |
/external/eigen/blas/testing/ |
cblat2.f | [all...] |
dblat2.f | [all...] |
sblat2.f | [all...] |
zblat2.f | [all...] |
/external/cblas/testing/ |
c_cblat2.f | [all...] |
c_cblat3.f | [all...] |
c_dblat2.f | [all...] |
c_dblat3.f | [all...] |
c_sblat2.f | [all...] |
c_sblat3.f | [all...] |