Lines Matching defs:bytes
185 sf_count_t bytes;
202 if ((bytes = readf_function(sndfile, data, (sf_count_t) (data_length/k))) > 0)
203 bytes *= (sf_count_t) k;
206 bytes = sf_read_raw(sndfile, data, (sf_count_t) data_length);
208 if (bytes > 0)
209 pa_stream_write(s, data, (size_t) bytes, NULL, 0, PA_SEEK_RELATIVE);
214 if (bytes < (sf_count_t) data_length) {
220 if ((size_t) bytes >= length)
223 length -= bytes;
270 sf_count_t bytes;
295 if ((bytes = writef_function(sndfile, data ? data : silence_buffer, (sf_count_t) (length/k))) > 0)
296 bytes *= (sf_count_t) k;
299 bytes = sf_write_raw(sndfile, data ? data : silence_buffer, (sf_count_t) length);
301 if (bytes < (sf_count_t) length)
703 " --latency=BYTES Request the specified latency in bytes.\n"
704 " --process-time=BYTES Request the specified process time per request in bytes.\n"