HomeSort by relevance Sort by last modified time
    Searched defs:CLIP_U16 (Results 1 - 15 of 15) sorted by null

  /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/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/libavc/common/arm/
ih264_platform_macros.h 91 static __inline WORD32 CLIP_U16(WORD32 x)
124 #define CLIP_U16(x) CLIP3(0, UINT16_MAX, (x))
  /external/libavc/common/armv8/
ih264_platform_macros.h 91 static __inline WORD32 CLIP_U16(WORD32 x)
124 #define CLIP_U16(x) CLIP3(0, UINT16_MAX, (x))
  /external/libhevc/common/mips/
ihevc_platform_macros.h 47 #define CLIP_U16(x) CLIP3((x), 0, 65535)
  /external/libavc/common/mips/
ih264_platform_macros.h 55 #define CLIP_U16(x) CLIP3(0, UINT16_MAX, (x))
  /external/libavc/common/x86/
ih264_platform_macros.h 56 #define CLIP_U16(x) CLIP3(0, UINT16_MAX, (x))
  /external/libhevc/common/arm/
ihevc_platform_macros.h 86 static __inline WORD32 CLIP_U16(WORD32 x)
117 #define CLIP_U16(x) CLIP3((x), 0, 65535)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 52 #define CLIP_U16(x) CLIP3((x), 0, 65535);

Completed in 1016 milliseconds