Home | History | Annotate | Download | only in include

Lines Matching full:bits

47 INLINE uint32_t OI_BITSTREAM_ReadUINT(OI_BITSTREAM* bs, OI_UINT bits);
54 OI_UINT bits);
78 #define OI_BITSTREAM_READUINT(result, bits, ptr, value, bitPtr) \
80 OI_ASSERT((bits) <= 16); \
85 (result) >>= 32 - (bits); \
87 (bitPtr) += (bits); \
92 OI_ASSERT(((bits) == 0) || ((result) < (1u << (bits)))); \
95 #define OI_BITSTREAM_WRITEUINT(ptr, value, bitPtr, datum, bits) \
97 (bitPtr) -= (bits); \