Home | History | Annotate | Download | only in encoder

Lines Matching refs:U32

76 U32 hme_compute_2d_sum_u08(U08 *pu1_inp, S32 i4_wd, S32 i4_ht, S32 i4_stride)
79 U32 u4_sum = 0;
84 u4_sum += (U32)pu1_inp[j];
91 U32 hme_compute_2d_sum_u16(U16 *pu2_inp, S32 i4_wd, S32 i4_ht, S32 i4_stride)
94 U32 u4_sum = 0;
99 u4_sum += (U32)pu2_inp[j];
106 U32 hme_compute_2d_sum_u32(U32 *pu4_inp, S32 i4_wd, S32 i4_ht, S32 i4_stride)
109 U32 u4_sum = 0;
114 u4_sum += (U32)pu4_inp[j];
146 U32 hme_compute_2d_sum_unsigned(
153 else if(i4_datatype == sizeof(U32))
154 return (hme_compute_2d_sum_u32((U32 *)pv_inp, i4_blk_wd, i4_blk_ht, i4_stride));