Lines Matching defs:size
232 // Use a buffer aligned by typical size of page frame.
285 unsigned int size;
289 size = frame_count * samples_per_frame *
291 buf = malloc(size);
294 memset(buf, 0, size);
302 err = memcmp(frame_buffer, buf, size);
311 err = memcmp(frame_buffer, buf, size);
325 unsigned int size;
334 size = frame_count * snd_pcm_format_physical_width(sample_format) / 8;
337 bufs[i] = malloc(size);
342 memset(bufs[i], 0, size);
353 err = memcmp(target[i], bufs[i], size);
365 err = memcmp(target[i], bufs[i], size);
385 unsigned int size;
390 size = frame_count * snd_pcm_format_physical_width(sample_format) / 8;
397 test_vec[i] = test_buf + size * i;