Searched refs:time_data (Results 1 - 6 of 6) sorted by relevance

/external/autotest/contrib/
H A Dcompare_suite.py304 def print_task_data(all_jobs, time_data):
308 zip(time_data, all_jobs.keys())])
312 if data else '_' for data in time_data])
316 if data else '_' for data in time_data])
319 [str(data[2]) if data else '_' for data in time_data])
410 time_data = [suite_job.get_time_per_task_type(task_type) variable
412 print_task_data(all_jobs, time_data)
415 time_data = [suite_job.get_time_per_task_type_from_db(task_type) variable
417 print_task_data(all_jobs, time_data)
420 [str(data[3]) if data else '_' for data in time_data])
[all...]
/external/webrtc/webrtc/modules/audio_processing/ns/
H A Dns_core.c878 // * |time_data| is the signal in the time domain.
883 // * |time_data| is the signal in the frequency domain.
888 float* time_data,
898 WebRtc_rdft(time_data_length, 1, time_data, self->ip, self->wfft);
901 real[0] = time_data[0];
904 real[magnitude_length - 1] = time_data[1];
907 real[i] = time_data[2 * i];
908 imag[i] = time_data[2 * i + 1];
923 // * |time_data| is the signal in the time domain.
929 float* time_data) {
887 FFT(NoiseSuppressionC* self, float* time_data, size_t time_data_length, size_t magnitude_length, float* real, float* imag, float* magn) argument
924 IFFT(NoiseSuppressionC* self, const float* real, const float* imag, size_t magnitude_length, size_t time_data_length, float* time_data) argument
[all...]
/external/libxaac/decoder/
H A Dixheaacd_api.c1248 WORD16 *time_data; local
1262 time_data = (WORD16 *)(p_obj_exhaacplus_dec
1711 time_data, 1, p_obj_exhaacplus_dec->aac_config.ui_max_channels,
1718 p_obj_exhaacplus_dec, &aac_scratch_struct, time_data, frame_status,
1815 time_data, 1, 1, p_state_enhaacplus_dec->audio_object_type);
1819 &p_state_enhaacplus_dec->pstr_stream_sbr[0][0], time_data,
2106 WORD16 *time_data; local
2129 time_data = (WORD16 *)(p_obj_exhaacplus_dec
2385 actual_out_buffer = time_data;
2440 time_data, channe
[all...]
H A Dixheaacd_aacdecoder.c93 ia_aac_dec_scratch_struct *aac_scratch_ptrs, WORD16 *time_data,
812 &str_ics_info[ch], time_data + slot_element, (WORD16)ch_fac,
826 time_data + slot_element, overlap1,
834 time_data + slot_element, overlap1,
91 ixheaacd_aacdec_decodeframe( ia_exhaacplus_dec_api_struct *p_obj_exhaacplus_dec, ia_aac_dec_scratch_struct *aac_scratch_ptrs, WORD16 *time_data, FLAG frame_status, WORD *type, WORD *ch_idx, WORD init_flag, WORD channel, WORD *element_index_order, WORD skip_full_decode, WORD ch_fac, WORD slot_element, WORD max_channels, WORD32 total_channels, WORD32 frame_length, WORD32 frame_size, ia_drc_dec_struct *pstr_drc_dec, WORD32 object_type, WORD32 ch_config, ia_eld_specific_config_struct eld_specific_config, WORD16 adtsheader, ia_drc_dec_struct *drc_dummy) argument
H A Dixheaacd_struct_def.h252 ia_aac_dec_scratch_struct *aac_scratch_ptrs, WORD16 *time_data,
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_core.c817 float time_data[PART_LEN2],
823 time_data[0] = freq_data[0][0] * normalization;
824 time_data[1] = freq_data[0][PART_LEN] * normalization;
826 time_data[2 * i] = freq_data[0][i] * normalization;
827 time_data[2 * i + 1] = sign * freq_data[1][i] * normalization;
829 aec_rdft_inverse_128(time_data);
833 static void Fft(float time_data[PART_LEN2], argument
836 aec_rdft_forward_128(time_data);
841 freq_data[0][0] = time_data[0];
842 freq_data[0][PART_LEN] = time_data[
816 ScaledInverseFft(float freq_data[2][PART_LEN1], float time_data[PART_LEN2], float scale, int conjugate) argument
[all...]

Completed in 246 milliseconds