OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:signed_char_clamp
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/libvpx/vp9/common/
vp9_loopfilter_filters.c
16
static INLINE int8_t
signed_char_clamp
(int t) {
function
83
int8_t filter =
signed_char_clamp
(ps1 - qs1) & hev;
86
filter =
signed_char_clamp
(filter + 3 * (qs0 - ps0)) & mask;
91
filter1 =
signed_char_clamp
(filter + 4) >> 3;
92
filter2 =
signed_char_clamp
(filter + 3) >> 3;
94
*oq0 =
signed_char_clamp
(qs0 - filter1) ^ 0x80;
95
*op0 =
signed_char_clamp
(ps0 + filter2) ^ 0x80;
100
*oq1 =
signed_char_clamp
(qs1 - filter) ^ 0x80;
101
*op1 =
signed_char_clamp
(ps1 + filter) ^ 0x80;
/external/libvpx/libvpx/vp8/common/x86/
loopfilter_block_sse2.asm
73
psubsb scratch1, %4 ;
signed_char_clamp
(ps1 - qs1)
Completed in 986 milliseconds