Home
last modified time | relevance | path

Searched refs:totalIndex (Results 1 – 1 of 1) sorted by relevance

/NW4C-1.2.23/sources/libraries/snd/
Dsnd_StreamBufferPool.cpp70 const int totalIndex = byteIndex * BIT_PER_BYTE + bitIndex; in Alloc() local
71 return ut::AddOffsetToPtr( m_pBuffer, m_BlockSize * totalIndex ); in Alloc()
83 const unsigned long totalIndex = static_cast<unsigned long>( offset / m_BlockSize ); in Free() local
84 NW_ASSERT( totalIndex < BLOCK_MAX ); in Free()
85 const unsigned long byteIndex = ( totalIndex / BIT_PER_BYTE ); in Free()
86 const unsigned long bitIndex = ( totalIndex % BIT_PER_BYTE ); in Free()