OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:linestocopy
(Results
1 - 3
of
3
) sorted by null
/external/libvpx/vp8/encoder/arm/
picklpf_arm.c
31
int
linestocopy
;
local
37
linestocopy
= (yheight >> (Fraction + 4));
39
if (
linestocopy
< 1)
40
linestocopy
= 1;
42
linestocopy
<<= 4;
48
//vpx_memcpy (dst_y, src_y, ystride * (
linestocopy
+16));
49
vp8_memcpy_neon((unsigned char *)dst_y, (unsigned char *)src_y, (int)(ystride *(
linestocopy
+ 16)));
/external/libvpx/vp8/encoder/
picklpf.c
48
int
linestocopy
;
local
54
linestocopy
= (yheight >> (Fraction + 4));
56
if (
linestocopy
< 1)
57
linestocopy
= 1;
59
linestocopy
<<= 4;
65
vpx_memcpy(dst_y, src_y, ystride *(
linestocopy
+ 16));
76
int
linestocopy
= (source->y_height >> (Fraction + 4));
local
79
if (
linestocopy
< 1)
80
linestocopy
= 1;
82
linestocopy
<<= 4
[
all
...]
/external/libvpx/vp8/common/
loopfilter.c
511
int
linestocopy
;
local
524
linestocopy
= (post->y_height >> (4 + Fraction));
526
if (
linestocopy
< 1)
527
linestocopy
= 1;
529
linestocopy
<<= 4;
563
for (mb_row = 0; mb_row<(
linestocopy
>> 4); mb_row++)
Completed in 30 milliseconds