Home
last modified time | relevance | path

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

/NW4C-1.3.3/sources/libraries/snd/
Dsnd_Util.cpp949 unsigned long frac; in GetSampleByByte() local
955 frac = ( byte % 8 ); in GetSampleByByte()
956 if ( frac != 0 ) in GetSampleByByte()
958 samples += ( frac - 1 ) * 2 ; in GetSampleByByte()
985 unsigned long frac; in GetByteBySample() local
991 frac = ( samples % 14 ); in GetByteBySample()
992 if ( frac != 0 ) in GetByteBySample()
994 byte += ( ( frac + 1 ) >> 1 ) + 1; in GetByteBySample()