Lines Matching defs:seconds
130 printf ("Sleeping for 5 seconds before exiting.\n\n") ;
182 format_duration_str (double seconds)
189 hrs = (int) (seconds / 3600.0) ;
190 min = (int) ((seconds - (hrs * 3600.0)) / 60.0) ;
191 sec = seconds - (hrs * 3600.0) - (min * 60.0) ;
201 double seconds ;
209 seconds = (1.0 * sfinfo->frames) / sfinfo->samplerate ;
212 total_seconds += seconds ;
214 return format_duration_str (seconds) ;
371 printf ("Time ref : 0x%x%08x (%.6f seconds)\n", bext.time_reference_high, bext.time_reference_low, time_ref_sec) ;