Home
last modified time | relevance | path

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

/dports/audio/snd/snd-21.2/
H A Dsnd-axis.c204 #define CLOCK_BUFFER_SIZE 64 in clock_number() macro
219 buf = (char *)calloc(CLOCK_BUFFER_SIZE, sizeof(char)); in clock_number()
222 …snprintf(buf, CLOCK_BUFFER_SIZE, "%02d:%02d:%02d:%02d.%0*d", day, hour, minute, second, tens, (int… in clock_number()
226 …snprintf(buf, CLOCK_BUFFER_SIZE, "%02d:%02d:%02d.%0*d", hour, minute, second, tens, (int)(frac_sec… in clock_number()
230 …snprintf(buf, CLOCK_BUFFER_SIZE, "%02d:%02d.%0*d", minute, second, tens, (int)(frac_second * pow(1… in clock_number()
234 snprintf(buf, CLOCK_BUFFER_SIZE, "%d.%0*d", second, tens, (int)(frac_second * pow(10.0, tens))); in clock_number()
235 else snprintf(buf, CLOCK_BUFFER_SIZE, "0.%0*d", tens, (int)(frac_second * pow(10.0, tens))); in clock_number()