OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CLIP_S16
(Results
26 - 31
of
31
) sorted by null
1
2
/external/libmpeg2/common/x86/
icv_platform_macros.h
77
#define
CLIP_S16
(x) CLIP3(-32768, 32767, (x))
/external/libhevc/common/arm/
ihevc_platform_macros.h
79
static __inline WORD32
CLIP_S16
(WORD32 x)
103
#define
CLIP_S16
(x) CLIP3((x), -32768, 32767)
/external/libhevc/common/x86/
ihevc_platform_macros.h
52
#define
CLIP_S16
(x) CLIP3((x), -32768, 32767)
/external/libhevc/decoder/x86/
ihevcd_it_rec_dc_sse42_intr.c
84
dc_value =
CLIP_S16
((quant_out * 64 + add) >> shift);
87
dc_value =
CLIP_S16
((dc_value * 64 + add) >> shift);
227
dc_value =
CLIP_S16
((quant_out * 64 + add) >> shift);
230
dc_value =
CLIP_S16
((dc_value * 64 + add) >> shift);
ihevcd_it_rec_dc_ssse3_intr.c
85
dc_value =
CLIP_S16
((quant_out * 64 + add) >> shift);
88
dc_value =
CLIP_S16
((dc_value * 64 + add) >> shift);
227
dc_value =
CLIP_S16
((quant_out * 64 + add) >> shift);
230
dc_value =
CLIP_S16
((dc_value * 64 + add) >> shift);
/external/libhevc/decoder/
ihevcd_mv_pred.c
130
ps_mv->i2_mvx =
CLIP_S16
(mvx);
131
ps_mv->i2_mvy =
CLIP_S16
(mvy);
190
ps_mv->i2_mvx =
CLIP_S16
(mvx);
191
ps_mv->i2_mvy =
CLIP_S16
(mvy);
Completed in 195 milliseconds
1
2