OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CLIP_U16
(Results
1 - 15
of
15
) sorted by null
/external/libmpeg2/common/armv8/
impeg2_platform_macros.h
43
#define
CLIP_U16
(x) ((x) > 65535) ? (65535) : (((x) < 0) ? (0) : (x))
icv_platform_macros.h
63
#define
CLIP_U16
(x) ((x) > 65535) ? (65535) : (((x) < 0) ? (0) : (x))
/external/libmpeg2/common/mips/
impeg2_platform_macros.h
43
#define
CLIP_U16
(x) ((x) > 65535) ? (65535) : (((x) < 0) ? (0) : (x))
icv_platform_macros.h
76
#define
CLIP_U16
(x) CLIP3(0, 65535, (x))
/external/libmpeg2/common/x86/
impeg2_platform_macros.h
43
#define
CLIP_U16
(x) ((x) > 65535) ? (65535) : (((x) < 0) ? (0) : (x))
icv_platform_macros.h
76
#define
CLIP_U16
(x) CLIP3(0, 65535, (x))
/external/libmpeg2/common/arm/
impeg2_platform_macros.h
61
static __inline WORD32
CLIP_U16
(WORD32 x)
icv_platform_macros.h
79
static __inline WORD32
CLIP_U16
(WORD32 x)
/external/libavc/common/arm/
ih264_platform_macros.h
77
static __inline WORD32
CLIP_U16
(WORD32 x)
107
#define
CLIP_U16
(x) CLIP3(0, 65535, (x))
/external/libavc/common/armv8/
ih264_platform_macros.h
77
static __inline WORD32
CLIP_U16
(WORD32 x)
107
#define
CLIP_U16
(x) CLIP3(0, 65535, (x))
/external/libavc/common/mips/
ih264_platform_macros.h
50
#define
CLIP_U16
(x) CLIP3(0, 65535, (x))
/external/libavc/common/x86/
ih264_platform_macros.h
53
#define
CLIP_U16
(x) CLIP3(0, 65535, (x))
/external/libhevc/common/mips/
ihevc_platform_macros.h
47
#define
CLIP_U16
(x) CLIP3((x), 0, 65535)
/external/libhevc/common/arm/
ihevc_platform_macros.h
74
static __inline WORD32
CLIP_U16
(WORD32 x)
102
#define
CLIP_U16
(x) CLIP3((x), 0, 65535)
/external/libhevc/common/x86/
ihevc_platform_macros.h
51
#define
CLIP_U16
(x) CLIP3((x), 0, 65535)
Completed in 437 milliseconds