OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAC__int64
(Results
1 - 10
of
10
) sorted by null
/external/flac/libFLAC/include/private/
bitmath.h
40
unsigned FLAC__bitmath_silog2_wide(
FLAC__int64
v);
float.h
72
#define FLAC__fixedpoint_mul(x, y) ( (FLAC__fixedpoint) ( ((
FLAC__int64
)(x)*(
FLAC__int64
)(y)) >> 16 ) )
74
#define FLAC__fixedpoint_div(x, y) ( (FLAC__fixedpoint) ( ( ((
FLAC__int64
)(x)<<32) / (
FLAC__int64
)(y) ) >> 16 ) )
/external/flac/libFLAC/
lpc.c
268
FLAC__int64
sumo;
287
sumo += (
FLAC__int64
)qlp_coeff[j] * (
FLAC__int64
)(*history);
535
FLAC__int64
sum;
550
sum += (
FLAC__int64
)qlp_coeff[j] * (
FLAC__int64
)(*(--history));
559
if(FLAC__bitmath_silog2_wide((
FLAC__int64
)(*data) - (sum >> lp_quantization)) > 32) {
561
fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%I64d, residual=%I64d\n", i, *data, sum >> lp_quantization, (
FLAC__int64
)(*data) - (sum >> lp_quantization));
563
fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%lld, residual=%lld\n", i, *data, (long long)(sum >> lp_quantization), (long long)((
FLAC__int64
)(*data) - (sum >> lp_quantization)));
573
FLAC__int64
sum
[
all
...]
bitmath.c
127
unsigned FLAC__bitmath_silog2_wide(
FLAC__int64
v)
memory.c
54
*aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((
FLAC__int64
)32)));
63
*aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((
FLAC__int64
)32)));
fixed.c
329
residual_bits_per_sample[0] = (FLAC__float)((total_error_0 > 0) ? log(M_LN2 * (FLAC__double)(
FLAC__int64
)total_error_0 / (FLAC__double)data_len) / M_LN2 : 0.0);
330
residual_bits_per_sample[1] = (FLAC__float)((total_error_1 > 0) ? log(M_LN2 * (FLAC__double)(
FLAC__int64
)total_error_1 / (FLAC__double)data_len) / M_LN2 : 0.0);
331
residual_bits_per_sample[2] = (FLAC__float)((total_error_2 > 0) ? log(M_LN2 * (FLAC__double)(
FLAC__int64
)total_error_2 / (FLAC__double)data_len) / M_LN2 : 0.0);
332
residual_bits_per_sample[3] = (FLAC__float)((total_error_3 > 0) ? log(M_LN2 * (FLAC__double)(
FLAC__int64
)total_error_3 / (FLAC__double)data_len) / M_LN2 : 0.0);
333
residual_bits_per_sample[4] = (FLAC__float)((total_error_4 > 0) ? log(M_LN2 * (FLAC__double)(
FLAC__int64
)total_error_4 / (FLAC__double)data_len) / M_LN2 : 0.0);
stream_decoder.c
[
all
...]
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);
[
all
...]
/external/flac/include/FLAC/
ordinals.h
45
typedef __int64
FLAC__int64
;
52
typedef long long
FLAC__int64
;
59
typedef int64_t
FLAC__int64
;
callback.h
127
typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle,
FLAC__int64
offset, int whence);
135
* \retval
FLAC__int64
138
typedef
FLAC__int64
(*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);
Completed in 889 milliseconds