Home
last modified time | relevance | path

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

/NW4C-1.2.23/sources/libraries/snd/
Dsnd_Util.cpp844 unsigned long frac; in GetSampleByByte() local
850 frac = ( byte % 8 ); in GetSampleByByte()
851 if ( frac != 0 ) in GetSampleByByte()
853 samples += ( frac - 1 ) * 2 ; in GetSampleByByte()
880 unsigned long frac; in GetByteBySample() local
886 frac = ( samples % 14 ); in GetByteBySample()
887 if ( frac != 0 ) in GetByteBySample()
889 byte += ( ( frac + 1 ) >> 1 ) + 1; in GetByteBySample()