OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MBs
(Results
1 - 7
of
7
) 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/libvpx/vp8/common/
onyxc_int.h
99
int
MBs
;
alloccommon.c
84
oci->
MBs
= oci->mb_rows * oci->mb_cols;
/external/libvpx/libvpx/vp8/encoder/
ratectrl.c
333
static int estimate_bits_at_q(int frame_kind, int Q, int
MBs
,
339
* chosen such that the maximum product of Bpm and
MBs
fits 31 bits. The
342
if (
MBs
> (1 << 11))
343
return (Bpm >> BPER_MB_NORMBITS) *
MBs
;
345
return (Bpm *
MBs
) >> BPER_MB_NORMBITS;
362
target = estimate_bits_at_q(INTRA_FRAME, Q, cpi->common.
MBs
,
[
all
...]
firstpass.c
784
/* adjust to the next row of
mbs
*/
823
fps.pcnt_inter = 1.0 * (double)intercount / cm->
MBs
;
824
fps.pcnt_second_ref = 1.0 * (double)second_ref_count / cm->
MBs
;
825
fps.pcnt_neutral = 1.0 * (double)neutral_count / cm->
MBs
;
838
fps.pcnt_motion = 1.0 * (double)mvcount / cpi->common.
MBs
;
[
all
...]
encodeframe.c
154
cpi->common.
MBs
));
158
sizeof(unsigned int) * cpi->common.
MBs
);
162
for ( i = 1; i < cpi->common.
MBs
; i ++ )
178
/* Even number
MBs
so estimate median as mean of two either side. */
179
median = ( 1 + sortlist[cpi->common.
MBs
>> 1] +
180
sortlist[(cpi->common.
MBs
>> 1) + 1] ) >> 1;
188
cpi->activity_avg = (unsigned int)(activity_sum/cpi->common.
MBs
);
259
/* Loop through all
MBs
. Note activity of each, average activity and
314
/* adjust to the next row of
mbs
*/
830
/* adjust to the next row of
mbs
*/
[
all
...]
onyx_if.c
474
* last frame 0,0 as only (last frame 0,0)
MBs
are eligable for
475
* refresh : that is to say
Mbs
likely to be background blocks.
828
unsigned int total_mbs = cm->
MBs
;
[
all
...]
Completed in 526 milliseconds