Lines Matching defs:hrir_copied_length
724 size_t hrir_copied_length, hrir_total_length;
942 hrir_copied_length = 0;
948 while (hrir_copied_length < hrir_total_length) {
959 if (hrir_total_length - hrir_copied_length >= hrir_left_temp_chunk_resampled.length) {
960 memcpy(hrir_data + hrir_copied_length, hrir_temp_data, hrir_left_temp_chunk_resampled.length);
961 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;
980 hrir_copied_length = 0;
982 while (hrir_copied_length < hrir_total_length) {
993 if (hrir_total_length - hrir_copied_length >= hrir_right_temp_chunk_resampled.length) {
994 memcpy(hrir_right_data + hrir_copied_length, hrir_temp_data, hrir_right_temp_chunk_resampled.length);
995 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;