Searched refs:totalIndex (Results 1 – 1 of 1) sorted by relevance
81 const int totalIndex = byteIndex * BIT_PER_BYTE + bitIndex; in Alloc() local82 return ut::AddOffsetToPtr( m_pBuffer, m_BlockSize * totalIndex ); in Alloc()94 const unsigned long totalIndex = static_cast<unsigned long>( offset / m_BlockSize ); in Free() local95 NW_ASSERT( totalIndex < BLOCK_MAX ); in Free()96 const unsigned long byteIndex = ( totalIndex / BIT_PER_BYTE ); in Free()97 const unsigned long bitIndex = ( totalIndex % BIT_PER_BYTE ); in Free()