Lines Matching refs:file
53 SNDFILE * file ;
65 /* Set up output file type. */
71 /* Write the output file. */
77 if ((file = sf_open (filename, SFM_WRITE, &sfinfo)) == NULL)
90 file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;
93 test_write_float_or_die (file, 0, float_data, ARRAY_LEN (float_data), __LINE__) ;
94 sf_close (file) ;
98 /* Read the file back in again. */
100 file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
101 test_read_float_or_die (file, 0, float_data, ARRAY_LEN (float_data), __LINE__) ;
102 sf_close (file) ;
140 /* Set up output file type. */
145 /* Write the output file. */