Lines Matching defs:hrir_total_length
724 size_t hrir_copied_length, hrir_total_length;
938 hrir_total_length = hrir_samples * pa_frame_size(&ss_input);
941 hrir_data = (float *) pa_xmalloc(hrir_total_length);
948 while (hrir_copied_length < hrir_total_length) {
959 if (hrir_total_length - hrir_copied_length >= hrir_left_temp_chunk_resampled.length) {
963 memcpy(hrir_data + hrir_copied_length, hrir_temp_data, hrir_total_length - hrir_copied_length);
964 hrir_copied_length = hrir_total_length;
979 hrir_right_data = (float *) pa_xmalloc(hrir_total_length);
982 while (hrir_copied_length < hrir_total_length) {
993 if (hrir_total_length - hrir_copied_length >= hrir_right_temp_chunk_resampled.length) {
997 memcpy(hrir_right_data + hrir_copied_length, hrir_temp_data, hrir_total_length - hrir_copied_length);
998 hrir_copied_length = hrir_total_length;