Home
last modified time | relevance | path

Searched refs:temp_array (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/webrtc/modules/audio_coding/neteq/
H A Daudio_vector.cc292 std::unique_ptr<int16_t[]> temp_array(new int16_t[n + 1]); in Reserve() local
293 CopyTo(length, 0, temp_array.get()); in Reserve()
294 array_.swap(temp_array); in Reserve()
304 std::unique_ptr<int16_t[]> temp_array(nullptr); in InsertByPushBack() local
307 temp_array.reset(new int16_t[move_chunk_length]); in InsertByPushBack()
308 CopyTo(move_chunk_length, position, temp_array.get()); in InsertByPushBack()
315 PushBack(temp_array.get(), move_chunk_length); in InsertByPushBack()
321 std::unique_ptr<int16_t[]> temp_array(nullptr); in InsertByPushFront() local
324 temp_array.reset(new int16_t[position]); in InsertByPushFront()
325 CopyTo(position, 0, temp_array.get()); in InsertByPushFront()
[all …]
H A Daudio_multi_vector.cc81 int16_t* temp_array = new int16_t[length_per_channel]; // Temporary storage. in PushBackInterleaved() local
85 temp_array[i] = append_this[channel + i * num_channels_]; in PushBackInterleaved()
87 channels_[channel]->PushBack(temp_array, length_per_channel); in PushBackInterleaved()
89 delete[] temp_array; in PushBackInterleaved()
/aosp_15_r20/external/libxaac/encoder/
H A Dixheaace_mps_polyphase.c979 FLOAT32 temp_array[128]; in ixheaace_mps_515_calculate_ana_filterbank() local
997 temp_array[127 - idx] = accumlate; in ixheaace_mps_515_calculate_ana_filterbank()
1005 temp_array[0] = accumlate; in ixheaace_mps_515_calculate_ana_filterbank()
1019 temp_array[63 - idx] = accumlate; in ixheaace_mps_515_calculate_ana_filterbank()
1022 ixheaace_mps_forward_modulation(temp_array, real_subband, imag_subband); in ixheaace_mps_515_calculate_ana_filterbank()
/aosp_15_r20/external/libhevc/common/x86/
H A Dihevc_16x16_itrans_recon_sse42_intr.c1698 WORD16 temp_array[256]; in ihevc_itrans_recon_16x16_sse42() local
1761 WORD16 *pi2_scratch = temp_array; in ihevc_itrans_recon_16x16_sse42()
1979 WORD16 *pi2_scratch = temp_array; in ihevc_itrans_recon_16x16_sse42()
2203 WORD16 *pi2_scratch = temp_array; in ihevc_itrans_recon_16x16_sse42()
2398 WORD16 *pi2_src_scratch = temp_array; in ihevc_itrans_recon_16x16_sse42()
2633 WORD16 *pi2_src_scratch = temp_array; in ihevc_itrans_recon_16x16_sse42()
2896 WORD16 *pi2_src_scratch = temp_array; in ihevc_itrans_recon_16x16_sse42()
H A Dihevc_itrans_recon_16x16_ssse3_intr.c1701 MEM_ALIGN16 WORD16 temp_array[256]; in ihevc_itrans_recon_16x16_ssse3() local
1764 WORD16 *pi2_scratch = temp_array; in ihevc_itrans_recon_16x16_ssse3()
1982 WORD16 *pi2_scratch = temp_array; in ihevc_itrans_recon_16x16_ssse3()
2206 WORD16 *pi2_scratch = temp_array; in ihevc_itrans_recon_16x16_ssse3()
2401 WORD16 *pi2_src_scratch = temp_array; in ihevc_itrans_recon_16x16_ssse3()
2636 WORD16 *pi2_src_scratch = temp_array; in ihevc_itrans_recon_16x16_ssse3()
2899 WORD16 *pi2_src_scratch = temp_array; in ihevc_itrans_recon_16x16_ssse3()
/aosp_15_r20/external/mesa3d/src/util/
H A Dparson.c1715 JSON_Array *temp_array = NULL, *temp_array_copy = NULL; in json_value_deep_copy() local
1722 temp_array = json_value_get_array(value); in json_value_deep_copy()
1728 for (i = 0; i < json_array_get_count(temp_array); i++) { in json_value_deep_copy()
1729 temp_value = json_array_get_value(temp_array, i); in json_value_deep_copy()