Home | History | Annotate | Download | only in libopenjpeg20

Lines Matching refs:OPJ_UINT32

64 static INLINE OPJ_UINT32 opj_uint_min(OPJ_UINT32 a, OPJ_UINT32 b) {
80 static INLINE OPJ_UINT32 opj_uint_max(OPJ_UINT32 a, OPJ_UINT32 b) {
88 static INLINE OPJ_UINT32 opj_uint_adds(OPJ_UINT32 a, OPJ_UINT32 b) {
90 return (OPJ_UINT32)(-(OPJ_INT32)(sum >> 32)) | (OPJ_UINT32)sum;
128 static INLINE OPJ_UINT32 opj_uint_ceildiv(OPJ_UINT32 a, OPJ_UINT32 b) {
153 static INLINE OPJ_UINT32 opj_uint_ceildivpow2(OPJ_UINT32 a, OPJ_UINT32 b) {
154 return (OPJ_UINT32)((a + ((OPJ_UINT64)1U << b) - 1U) >> b);
179 static INLINE OPJ_UINT32 opj_uint_floorlog2(OPJ_UINT32 a) {
180 OPJ_UINT32 l;