Home | History | Annotate | Download | only in alsactl

Lines Matching refs:bytes

23 	size_t bytes = 0;
29 if (bytes+1 < size)
31 bytes++;
37 return bytes;
42 size_t bytes = 0;
47 while (bytes < size && *q) {
49 bytes++;
51 if (bytes == size)
52 return (bytes + strlen(src));
55 if (bytes+1 < size)
57 bytes++;
61 return bytes;