Lines Matching refs:bytes
52 int bytes = config.buffer_info.bytes; in main() local
53 int8_t *ibuf = malloc(bytes); in main()
54 int8_t *obuf = malloc(bytes); in main()
55 sample_t *channels = malloc(bytes); in main()
59 bytes, in main()
68 ret = read(config.fd, ibuf, bytes); in main()
69 if (ret < bytes) { in main()
73 bytes, in main()
81 ret = write(config.fd, obuf, bytes); in main()
82 if (ret < bytes) { in main()
86 bytes, in main()