Lines Matching refs:OPJ_UINT32
65 static INLINE OPJ_UINT32 opj_uint_min(OPJ_UINT32 a, OPJ_UINT32 b) in opj_uint_min()
83 static INLINE OPJ_UINT32 opj_uint_max(OPJ_UINT32 a, OPJ_UINT32 b) in opj_uint_max()
92 static INLINE OPJ_UINT32 opj_uint_adds(OPJ_UINT32 a, OPJ_UINT32 b) in opj_uint_adds()
95 return (OPJ_UINT32)(-(OPJ_INT32)(sum >> 32)) | (OPJ_UINT32)sum; in opj_uint_adds()
102 static INLINE OPJ_UINT32 opj_uint_subs(OPJ_UINT32 a, OPJ_UINT32 b) in opj_uint_subs()
170 static INLINE OPJ_UINT32 opj_uint_ceildiv(OPJ_UINT32 a, OPJ_UINT32 b) in opj_uint_ceildiv()
173 return (OPJ_UINT32)(((OPJ_UINT64)a + b - 1) / b); in opj_uint_ceildiv()
198 static INLINE OPJ_UINT32 opj_uint_ceildivpow2(OPJ_UINT32 a, OPJ_UINT32 b) in opj_uint_ceildivpow2()
200 return (OPJ_UINT32)((a + ((OPJ_UINT64)1U << b) - 1U) >> b); in opj_uint_ceildivpow2()
227 static INLINE OPJ_UINT32 opj_uint_floorlog2(OPJ_UINT32 a) in opj_uint_floorlog2()
229 OPJ_UINT32 l; in opj_uint_floorlog2()