OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CLIP_S12
(Results
1 - 16
of
16
) sorted by null
/external/libmpeg2/common/armv8/
impeg2_platform_macros.h
41
#define
CLIP_S12
(x) ((x) > 2047) ? (2047) : (((x) < -2048) ? (-2048) : (x))
icv_platform_macros.h
61
#define
CLIP_S12
(x) ((x) > 2047) ? (2047) : (((x) < -2048) ? (-2048) : (x))
/external/libmpeg2/common/mips/
impeg2_platform_macros.h
41
#define
CLIP_S12
(x) ((x) > 2047) ? (2047) : (((x) < -2048) ? (-2048) : (x))
icv_platform_macros.h
74
#define
CLIP_S12
(x) CLIP3(-2048, 2047, (x))
/external/libmpeg2/common/x86/
impeg2_platform_macros.h
41
#define
CLIP_S12
(x) ((x) > 2047) ? (2047) : (((x) < -2048) ? (-2048) : (x))
icv_platform_macros.h
74
#define
CLIP_S12
(x) CLIP3(-2048, 2047, (x))
/external/libmpeg2/common/arm/
impeg2_platform_macros.h
55
static __inline WORD32
CLIP_S12
(WORD32 x)
icv_platform_macros.h
73
static __inline WORD32
CLIP_S12
(WORD32 x)
/external/libavc/common/arm/
ih264_platform_macros.h
71
static __inline WORD32
CLIP_S12
(WORD32 x)
105
#define
CLIP_S12
(x) CLIP3(-2048, 2047, (x))
/external/libavc/common/armv8/
ih264_platform_macros.h
71
static __inline WORD32
CLIP_S12
(WORD32 x)
105
#define
CLIP_S12
(x) CLIP3(-2048, 2047, (x))
/external/libavc/common/mips/
ih264_platform_macros.h
48
#define
CLIP_S12
(x) CLIP3(-2048, 2047, (x))
/external/libavc/common/x86/
ih264_platform_macros.h
51
#define
CLIP_S12
(x) CLIP3(-2048, 2047, (x))
/external/libhevc/common/mips/
ihevc_platform_macros.h
45
#define
CLIP_S12
(x) CLIP3((x), -2048, 2047);
/external/libhevc/common/arm/
ihevc_platform_macros.h
68
static __inline WORD32
CLIP_S12
(WORD32 x)
100
#define
CLIP_S12
(x) CLIP3((x), -2048, 2047);
/external/libhevc/common/x86/
ihevc_platform_macros.h
49
#define
CLIP_S12
(x) CLIP3((x), -2048, 2047);
/external/libmpeg2/decoder/
impeg2d_vld.c
[
all
...]
Completed in 74 milliseconds