Home
last modified time | relevance | path

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

/NW4C-2.0.3/sources/libraries/snd/
Dsnd_Util.cpp955 unsigned long frac; in GetSampleByByte() local
961 frac = ( byte % 8 ); in GetSampleByByte()
962 if ( frac != 0 ) in GetSampleByByte()
964 samples += ( frac - 1 ) * 2 ; in GetSampleByByte()
991 unsigned long frac; in GetByteBySample() local
997 frac = ( samples % 14 ); in GetByteBySample()
998 if ( frac != 0 ) in GetByteBySample()
1000 byte += ( ( frac + 1 ) >> 1 ) + 1; in GetByteBySample()