OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:linestocopy
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/libvpx/vp8/encoder/arm/neon/
picklpf_arm.c
26
int
linestocopy
;
local
32
linestocopy
= (yheight >> 4) / PARTIAL_FRAME_FRACTION;
33
linestocopy
=
linestocopy
?
linestocopy
<< 4 : 16; /* 16 lines per MB */
39
linestocopy
+= 4;
45
vp8_memcpy_partial_neon(dst_y, src_y, ystride *
linestocopy
);
/external/libvpx/libvpx/vp8/encoder/
picklpf.c
33
int
linestocopy
;
local
39
linestocopy
= (yheight >> 4) / PARTIAL_FRAME_FRACTION;
40
linestocopy
=
linestocopy
?
linestocopy
<< 4 : 16; /* 16 lines per MB */
46
linestocopy
+= 4;
52
vpx_memcpy(dst_y, src_y, ystride *
linestocopy
);
64
int
linestocopy
;
local
67
linestocopy
= (source->y_height >> 4) / PARTIAL_FRAME_FRACTION;
68
linestocopy
= linestocopy ? linestocopy << 4 : 16; /* 16 lines per MB *
[
all
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.c
43
int
linestocopy
= (source->y_height >> (Fraction + 4));
local
45
if (
linestocopy
< 1)
46
linestocopy
= 1;
48
linestocopy
<<= 4;
59
for (i = 0; i <
linestocopy
; i += 16) {
/external/libvpx/libvpx/vp8/common/
loopfilter.c
569
int
linestocopy
;
local
588
linestocopy
= mb_rows / PARTIAL_FRAME_FRACTION;
589
linestocopy
=
linestocopy
?
linestocopy
<< 4 : 16; /* 16 lines per MB */
596
for (mb_row = 0; mb_row<(
linestocopy
>> 4); mb_row++)
Completed in 803 milliseconds