Home
last modified time | relevance | path

Searched refs:return_array (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/flac/src/libFLAC/
H A Dmetadata_object.c231 FLAC__StreamMetadata_VorbisComment_Entry *return_array; in vorbiscomment_entry_array_copy_() local
236 return_array = vorbiscomment_entry_array_new_(num_comments); in vorbiscomment_entry_array_copy_()
238 if (return_array != NULL) { in vorbiscomment_entry_array_copy_()
242 if (!copy_vcentry_(return_array+i, object_array+i)) { in vorbiscomment_entry_array_copy_()
243 vorbiscomment_entry_array_delete_(return_array, num_comments); in vorbiscomment_entry_array_copy_()
249 return return_array; in vorbiscomment_entry_array_copy_()
378 FLAC__StreamMetadata_CueSheet_Track *return_array; in cuesheet_track_array_copy_() local
383 return_array = cuesheet_track_array_new_(num_tracks); in cuesheet_track_array_copy_()
385 if (return_array != NULL) { in cuesheet_track_array_copy_()
389 if (!copy_track_(return_array+i, object_array+i)) { in cuesheet_track_array_copy_()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/data_structures/
H A Dconditional_accumulator_test.py483 return_array = []
486 return_array.append(self.evaluate(takeg_t))
495 self.assertEqual([elems_ave], return_array)