OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CLIP_S8
(Results
1 - 15
of
15
) sorted by null
/external/libmpeg2/common/arm/
impeg2_platform_macros.h
43
static __inline WORD32
CLIP_S8
(WORD32 x)
icv_platform_macros.h
61
static __inline WORD32
CLIP_S8
(WORD32 x)
/external/libmpeg2/common/armv8/
impeg2_platform_macros.h
38
#define
CLIP_S8
(x) ((x) > 127) ? (127) : (((x) < -128) ? (-128) : (x))
icv_platform_macros.h
58
#define
CLIP_S8
(x) ((x) > 127) ? (127) : (((x) < -128) ? (-128) : (x))
/external/libmpeg2/common/mips/
impeg2_platform_macros.h
38
#define
CLIP_S8
(x) ((x) > 127) ? (127) : (((x) < -128) ? (-128) : (x))
icv_platform_macros.h
68
#define
CLIP_S8
(x) CLIP3(-128, 127, (x))
/external/libmpeg2/common/x86/
impeg2_platform_macros.h
38
#define
CLIP_S8
(x) ((x) > 127) ? (127) : (((x) < -128) ? (-128) : (x))
icv_platform_macros.h
68
#define
CLIP_S8
(x) CLIP3(-128, 127, (x))
/external/libavc/common/arm/
ih264_platform_macros.h
47
static __inline WORD32
CLIP_S8
(WORD32 x)
99
#define
CLIP_S8
(x) CLIP3(-128, 127, (x))
/external/libavc/common/armv8/
ih264_platform_macros.h
47
static __inline WORD32
CLIP_S8
(WORD32 x)
99
#define
CLIP_S8
(x) CLIP3(-128, 127, (x))
/external/libavc/common/mips/
ih264_platform_macros.h
42
#define
CLIP_S8
(x) CLIP3(-128, 127, (x))
/external/libavc/common/x86/
ih264_platform_macros.h
45
#define
CLIP_S8
(x) CLIP3(-128, 127, (x))
/external/libhevc/common/arm/
ihevc_platform_macros.h
44
static __inline WORD32
CLIP_S8
(WORD32 x)
94
#define
CLIP_S8
(x) CLIP3((x), -128, 127)
/external/libhevc/common/mips/
ihevc_platform_macros.h
39
#define
CLIP_S8
(x) CLIP3((x), -128, 127)
/external/libhevc/common/x86/
ihevc_platform_macros.h
43
#define
CLIP_S8
(x) CLIP3((x), -128, 127)
Completed in 825 milliseconds