HomeSort by relevance Sort by last modified time
    Searched refs:MBs (Results 1 - 6 of 6) sorted by null

  /system/extras/tests/icachetest/
icache_main.c 13 long MBs;
30 MBs = (8388608LL*32*1000000) / (t * (1024*1024));
31 printf("\n%6lld us\t%ld MB/s\n", t, MBs);
  /external/libvpx/vp8/encoder/
ratectrl.c 565 static int baseline_bits_at_q(int frame_kind, int Q, int MBs)
570 * chosen such that the maximum product of Bpm and MBs fits 31 bits. The
573 if (MBs > (1 << 11))
574 return (Bpm >> BPER_MB_NORMBITS) * MBs;
576 return (Bpm * MBs) >> BPER_MB_NORMBITS;
629 cpi->this_frame_target = (baseline_bits_at_q(0, Q, cpi->common.MBs) * Boost) / 100;
647 cpi->this_frame_target = (((bits_per_mb_at_this_q * cpi->common.MBs) >> BPER_MB_NORMBITS) * Boost) / 100;
    [all...]
firstpass.c 373 fseek(cpi->fp_motion_mapfile, (int)(count * cpi->common.MBs), SEEK_CUR);
388 CHECK_MEM_ERROR(tmp_motion_map, vpx_calloc(cpi->common.MBs, 1));
391 vpx_memset(cpi->fp_motion_map, 0, cpi->common.MBs);
396 if (fread(tmp_motion_map, 1, cpi->common.MBs, cpi->fp_motion_mapfile) == cpi->common.MBs)
398 for (j = 0; j < cpi->common.MBs; j++)
780 // adjust to the next row of mbs
817 fps.pcnt_inter = 1.0 * (double)intercount / cm->MBs;
818 fps.pcnt_second_ref = 1.0 * (double)second_ref_count / cm->MBs;
830 fps.pcnt_motion = 1.0 * (double)mvcount / cpi->common.MBs;
    [all...]
onyx_if.c 383 // as only (last frame 0,0) MBs are eligable for refresh : that is to say Mbs likely to be background blocks.
    [all...]
  /external/libvpx/vp8/common/
onyxc_int.h 113 int MBs;
alloccommon.c 102 oci->MBs = oci->mb_rows * oci->mb_cols;

Completed in 2338 milliseconds