HomeSort by relevance Sort by last modified time
    Searched refs:WORD2INT (Results 1 - 3 of 3) sorted by null

  /external/speex/libspeexdsp/
resample_neon.h 63 #undef WORD2INT
64 #define WORD2INT(x) (saturate_32bit_to_16bit(x))
137 #undef WORD2INT
138 #define WORD2INT(x) (saturate_float_to_16bit(x))
resample.c 87 #define WORD2INT(x) ((x) < -32767 ? -32768 : ((x) > 32766 ? 32767 : (x)))
89 #define WORD2INT(x) ((x) < -32767.5f ? -32768 : ((x) > 32766.5f ? 32767 : floor(.5+(x))))
282 return WORD2INT(32768.*cutoff);
286 return WORD2INT(32768.*cutoff*sin(M_PI*xx)/(M_PI*xx) * compute_func(fabs(2.*x/N), window_func));
    [all...]
mdf.c 92 #define WORD2INT(x) ((x) < -32767 ? -32768 : ((x) > 32766 ? 32767 : (x)))
94 #define WORD2INT(x) ((x) < -32767.5f ? -32768 : ((x) > 32766.5f ? 32767 : floor(.5+(x))))
    [all...]

Completed in 749 milliseconds