HomeSort by relevance Sort by last modified time
    Searched full:flac__int64 (Results 1 - 8 of 8) sorted by null

  /external/flac/libFLAC/
lpc.c 271 FLAC__int64 sumo;
290 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history);
533 FLAC__int64 sum;
548 sum += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*(--history));
553 if(FLAC__bitmath_silog2_wide((FLAC__int64)(*data) - (sum >> lp_quantization)) > 32) {
554 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%" PRId64 ", residual=%" PRId64 "\n", i, *data, (int64_t)(sum >> lp_quantization), ((FLAC__int64)(*data) - (sum >> lp_quantization)));
563 FLAC__int64 sum;
579 sum += qlp_coeff[11] * (FLAC__int64)data[i-12]
    [all...]
bitmath.c 87 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v)
stream_decoder.c     [all...]
format.c 261 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
  /external/flac/libFLAC/include/private/
float.h 73 #define FLAC__fixedpoint_mul(x, y) ( (FLAC__fixedpoint) ( ((FLAC__int64)(x)*(FLAC__int64)(y)) >> 16 ) )
75 #define FLAC__fixedpoint_div(x, y) ( (FLAC__fixedpoint) ( ( ((FLAC__int64)(x)<<32) / (FLAC__int64)(y) ) >> 16 ) )
bitmath.h 184 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v);
  /external/flac/include/FLAC/
ordinals.h 47 typedef __int64 FLAC__int64;
63 typedef int64_t FLAC__int64;
callback.h 128 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence);
136 * \retval FLAC__int64
139 typedef FLAC__int64 (*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);

Completed in 731 milliseconds