Searched refs:FLAC__int64 (Results 1 – 8 of 8) sorted by relevance
/external/flac/libFLAC/ |
D | lpc.c | 271 FLAC__int64 sumo; in FLAC__lpc_compute_residual_from_qlp_coefficients() 290 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history); in FLAC__lpc_compute_residual_from_qlp_coefficients() 532 FLAC__int64 sum; in FLAC__lpc_compute_residual_from_qlp_coefficients_wide() 547 sum += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*(--history)); in FLAC__lpc_compute_residual_from_qlp_coefficients_wide() 552 if(FLAC__bitmath_silog2_wide((FLAC__int64)(*data) - (sum >> lp_quantization)) > 32) { in FLAC__lpc_compute_residual_from_qlp_coefficients_wide() 553 …esidual=%" PRId64 "\n", i, *data, (int64_t)(sum >> lp_quantization), ((FLAC__int64)(*data) - (sum … in FLAC__lpc_compute_residual_from_qlp_coefficients_wide() 562 FLAC__int64 sum; 578 sum += qlp_coeff[11] * (FLAC__int64)data[i-12]; 579 sum += qlp_coeff[10] * (FLAC__int64)data[i-11]; 580 sum += qlp_coeff[9] * (FLAC__int64)data[i-10]; [all …]
|
D | bitmath.c | 87 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v) in FLAC__bitmath_silog2_wide()
|
D | stream_decoder.c | 3001 FLAC__int64 pos = -1; in seek_to_absolute_sample_() 3121 …pos = (FLAC__int64)lower_bound + (FLAC__int64)((FLAC__double)(target_sample - lower_bound_sample) … in seek_to_absolute_sample_() 3125 …pos = (FLAC__int64)lower_bound + (FLAC__int64)(((target_sample - lower_bound_sample) * (upper_boun… in seek_to_absolute_sample_() 3127 …pos = (FLAC__int64)lower_bound + (FLAC__int64)((((target_sample - lower_bound_sample)>>8) * ((uppe… in seek_to_absolute_sample_() 3129 if(pos >= (FLAC__int64)upper_bound) in seek_to_absolute_sample_() 3130 pos = (FLAC__int64)upper_bound - 1; in seek_to_absolute_sample_() 3131 if(pos < (FLAC__int64)lower_bound) in seek_to_absolute_sample_() 3132 pos = (FLAC__int64)lower_bound; in seek_to_absolute_sample_() 3166 if (pos == (FLAC__int64)lower_bound) { in seek_to_absolute_sample_() 3249 …pos = (FLAC__int64)(((target_sample-left_sample) * (right_pos-left_pos)) / (right_sample-left_samp… in seek_to_absolute_sample_ogg_() [all …]
|
D | metadata_iterators.c | 142 static int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence); 143 static FLAC__int64 ftell_wrapper_(FLAC__IOHandle handle); 1199 FLAC__int64 pos = tell_cb(handle); in chain_read_cb_() 1245 FLAC__int64 pos = tell_cb(handle); in chain_read_cb_() 3323 int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence) in fseek_wrapper_() 3328 FLAC__int64 ftell_wrapper_(FLAC__IOHandle handle) in ftell_wrapper_()
|
/external/flac/libFLAC/include/private/ |
D | 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)(…
|
D | bitmath.h | 184 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v);
|
/external/flac/include/FLAC/ |
D | ordinals.h | 47 typedef __int64 FLAC__int64; typedef 63 typedef int64_t FLAC__int64; typedef
|
D | callback.h | 128 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence); 139 typedef FLAC__int64 (*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);
|