Searched refs:posPtr (Results 1 – 8 of 8) sorted by relevance
50 uint32 MP4_Utils::read_bit_field(posInfoType * posPtr, uint32 size) in read_bit_field() argument52 uint8 *bits = &posPtr->bytePtr[0]; in read_bit_field()56 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size); in read_bit_field()59 posPtr->bitPos += size; in read_bit_field()61 while (posPtr->bitPos >= 8) { in read_bit_field()62 posPtr->bitPos -= 8; in read_bit_field()63 posPtr->bytePtr++; in read_bit_field()
57 uint32 MP4_Utils::read_bit_field(posInfoType * posPtr, uint32 size) { in read_bit_field() argument58 uint8 *bits = &posPtr->bytePtr[0]; in read_bit_field()62 uint32 value = (bitBuf >> (32 - posPtr->bitPos - size)) & MASK(size); in read_bit_field()65 posPtr->bitPos += size; in read_bit_field()67 while (posPtr->bitPos >= 8) { in read_bit_field()68 posPtr->bitPos -= 8; in read_bit_field()69 posPtr->bytePtr++; in read_bit_field()
166 static uint32 read_bit_field(posInfoType * posPtr, uint32 size);
169 static uint32 read_bit_field(posInfoType * posPtr, uint32 size);