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

  /external/libmpeg2/common/arm/
impeg2_platform_macros.h 37 static __inline WORD32 CLIP_U8(WORD32 x)
icv_platform_macros.h 55 static __inline WORD32 CLIP_U8(WORD32 x)
  /external/libmpeg2/common/armv8/
impeg2_platform_macros.h 37 #define CLIP_U8(x) ((x) > 255) ? (255) : (((x) < 0) ? (0) : (x))
icv_platform_macros.h 57 #define CLIP_U8(x) ((x) > 255) ? (255) : (((x) < 0) ? (0) : (x))
  /external/libmpeg2/common/mips/
impeg2_platform_macros.h 37 #define CLIP_U8(x) ((x) > 255) ? (255) : (((x) < 0) ? (0) : (x))
icv_platform_macros.h 67 #define CLIP_U8(x) CLIP3(0, 255, (x))
  /external/libmpeg2/common/x86/
impeg2_platform_macros.h 37 #define CLIP_U8(x) ((x) > 255) ? (255) : (((x) < 0) ? (0) : (x))
icv_platform_macros.h 67 #define CLIP_U8(x) CLIP3(0, 255, (x))
  /external/libavc/common/arm/
ih264_platform_macros.h 41 static __inline WORD32 CLIP_U8(WORD32 x)
98 #define CLIP_U8(x) CLIP3(0, 255, (x))
  /external/libavc/common/armv8/
ih264_platform_macros.h 41 static __inline WORD32 CLIP_U8(WORD32 x)
98 #define CLIP_U8(x) CLIP3(0, 255, (x))
  /external/libavc/common/mips/
ih264_platform_macros.h 41 #define CLIP_U8(x) CLIP3(0, 255, (x))
  /external/libavc/common/x86/
ih264_platform_macros.h 44 #define CLIP_U8(x) CLIP3(0, 255, (x))
  /external/libhevc/common/arm/
ihevc_platform_macros.h 38 static __inline WORD32 CLIP_U8(WORD32 x)
93 #define CLIP_U8(x) CLIP3((x), 0, 255)
  /external/libhevc/common/mips/
ihevc_platform_macros.h 38 #define CLIP_U8(x) CLIP3((x), 0, 255)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 42 #define CLIP_U8(x) CLIP3((x), 0, 255)

Completed in 216 milliseconds