Home
last modified time | relevance | path

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

/NW4C-1.3.3/sources/libraries/snd/
Dsnd_StreamBufferPool.cpp72 for( int bitIndex = 0 ; bitIndex < BIT_PER_BYTE ; bitIndex++, mask<<=1 ) in Alloc() local
79 const int totalIndex = byteIndex * BIT_PER_BYTE + bitIndex; in Alloc()
95 const unsigned long bitIndex = ( totalIndex % BIT_PER_BYTE ); in Free() local
97 const int mask = ( 1 << bitIndex ); in Free()
/NW4C-1.3.3/include/nw/font/
Dfont_ArchiveFontBase.h491 u32 bitIndex = index % 32; in GetBit() local
492 return ((bits[wordIndex] << bitIndex) & (1u << 31)) != 0; in GetBit()