Lines Matching refs:BitBuffer
61 typedef struct BitBuffer struct
68 } BitBuffer ; argument
75 void BitBufferInit (BitBuffer * bits, uint8_t * buffer, uint32_t byteSize) ;
76 uint32_t BitBufferRead (BitBuffer * bits, uint8_t numBits) ; // note: cannot read more than 16 bits…
77 uint8_t BitBufferReadSmall (BitBuffer * bits, uint8_t numBits) ;
78 uint8_t BitBufferReadOne (BitBuffer * bits) ;
79 uint32_t BitBufferPeek (BitBuffer * bits, uint8_t numBits) ; // note: cannot read more than 16 bit…
80 uint32_t BitBufferPeekOne (BitBuffer * bits) ;
81 uint32_t BitBufferUnpackBERSize (BitBuffer * bits) ;
82 uint32_t BitBufferGetPosition (BitBuffer * bits) ;
83 void BitBufferByteAlign (BitBuffer * bits, int32_t addZeros) ;
84 void BitBufferAdvance (BitBuffer * bits, uint32_t numBits) ;
85 void BitBufferRewind (BitBuffer * bits, uint32_t numBits) ;
86 void BitBufferWrite (BitBuffer * bits, uint32_t value, uint32_t numBits) ;
87 void BitBufferReset (BitBuffer * bits) ;