Searched defs:CLIP_S16 (Results 1 – 15 of 15) sorted by relevance
/external/libmpeg2/common/mips/ |
D | impeg2_platform_macros.h | 44 #define CLIP_S16(x) ((x) > 32767) ? (32767) : (((x) < -32768) ? (-32768) : (x)) macro
|
D | icv_platform_macros.h | 77 #define CLIP_S16(x) CLIP3(-32768, 32767, (x)) macro
|
/external/libmpeg2/common/arm/ |
D | impeg2_platform_macros.h | 66 static __inline WORD32 CLIP_S16(WORD32 x) in CLIP_S16() function
|
D | icv_platform_macros.h | 84 static __inline WORD32 CLIP_S16(WORD32 x) in CLIP_S16() function
|
/external/libmpeg2/common/x86/ |
D | impeg2_platform_macros.h | 44 #define CLIP_S16(x) ((x) > 32767) ? (32767) : (((x) < -32768) ? (-32768) : (x)) macro
|
D | icv_platform_macros.h | 77 #define CLIP_S16(x) CLIP3(-32768, 32767, (x)) macro
|
/external/libmpeg2/common/armv8/ |
D | impeg2_platform_macros.h | 44 #define CLIP_S16(x) ((x) > 32767) ? (32767) : (((x) < -32768) ? (-32768) : (x)) macro
|
D | icv_platform_macros.h | 64 #define CLIP_S16(x) ((x) > 32767) ? (32767) : (((x) < -32768) ? (-32768) : (x)) macro
|
/external/libavc/common/armv8/ |
D | ih264_platform_macros.h | 96 static __inline WORD32 CLIP_S16(WORD32 x) in CLIP_S16() function 125 #define CLIP_S16(x) CLIP3(INT16_MIN, INT16_MAX, (x)) macro
|
/external/libavc/common/arm/ |
D | ih264_platform_macros.h | 96 static __inline WORD32 CLIP_S16(WORD32 x) in CLIP_S16() function 125 #define CLIP_S16(x) CLIP3(INT16_MIN, INT16_MAX, (x)) macro
|
/external/libhevc/common/arm/ |
D | ihevc_platform_macros.h | 91 static __inline WORD32 CLIP_S16(WORD32 x) in CLIP_S16() function 118 #define CLIP_S16(x) CLIP3((x), -32768, 32767) macro
|
/external/libhevc/common/mips/ |
D | ihevc_platform_macros.h | 48 #define CLIP_S16(x) CLIP3((x), -32768, 32767) macro
|
/external/libavc/common/mips/ |
D | ih264_platform_macros.h | 56 #define CLIP_S16(x) CLIP3(INT16_MIN, INT16_MAX, (x)) macro
|
/external/libavc/common/x86/ |
D | ih264_platform_macros.h | 57 #define CLIP_S16(x) CLIP3(INT16_MIN, INT16_MAX, (x)) macro
|
/external/libhevc/common/x86/ |
D | ihevc_platform_macros.h | 53 #define CLIP_S16(x) CLIP3((x), -32768, 32767); macro
|