HomeSort by relevance Sort by last modified time
    Searched refs:CLIP_S8 (Results 1 - 17 of 17) sorted by null

  /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/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/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/mips/
ihevc_platform_macros.h 39 #define CLIP_S8(x) CLIP3((x), -128, 127)
  /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/x86/
ihevc_platform_macros.h 43 #define CLIP_S8(x) CLIP3((x), -128, 127)
  /external/libhevc/decoder/
ihevcd_mv_pred.c 112 td = CLIP_S8(cur_poc - nbr_ref_poc);
113 tb = CLIP_S8(cur_poc - cur_ref_poc);
174 td = CLIP_S8(col_poc - col_ref_poc);
175 tb = CLIP_S8(cur_poc - cur_ref_poc);
ihevcd_parse_headers.c 222 ps_wt_ofst->i2_chroma_offset_l0_cb[i] = CLIP_S8(ofst);
232 ps_wt_ofst->i2_chroma_offset_l0_cr[i] = CLIP_S8(ofst);
299 ps_wt_ofst->i2_chroma_offset_l1_cb[i] = CLIP_S8(ofst);;
309 ps_wt_ofst->i2_chroma_offset_l1_cr[i] = CLIP_S8(ofst);;
    [all...]

Completed in 183 milliseconds