Lines Matching refs:bitOffset
805 deUint32 bitOffset)
810 , m_data ((deUint8*)data + (bitOffset / 8))
811 , m_bitOffset (bitOffset % 8)
821 const deInt32 bitOffset (m_bitOffset + tcu::dot(m_bitPitch, pos));
822 const deUint8* const firstByte = ((const deUint8*)m_data) + (bitOffset / 8);
823 const deUint32 byteCount = divRoundUp((bitOffset + m_channelSize) - 8u * (bitOffset / 8u), 8u);
825 const deUint32 offset = bitOffset % 8;
839 const deInt32 bitOffset (m_bitOffset + tcu::dot(m_bitPitch, pos));
840 deUint8* const firstByte = ((deUint8*)m_data) + (bitOffset / 8);
841 const deUint32 byteCount = divRoundUp((bitOffset + m_channelSize) - 8u * (bitOffset / 8u), 8u);
843 const deUint32 offset = bitOffset % 8;