Lines Matching defs:count

272 	unsigned int idx, count;
279 count = snd_ctl_elem_info_get_count(space->ctl_info);
283 for (idx = 0; idx < count; idx++) {
290 for (idx = 0; idx < count; idx++) {
298 for (idx = 0; idx < count; idx++) {
306 for (idx = 0; idx < count; idx++) {
316 count = sizeof(snd_aes_iec958_t);
317 if (count > (sizeof(res)-1)/2)
318 count = (sizeof(res)-1/2);
321 while (count > 0) {
325 count++;
343 unsigned int idx, idx2, count, items;
350 count = snd_ctl_elem_info_get_count(space->ctl_info);
353 for (idx = 0; idx < count; idx++) {
370 for (idx = 0; idx < count; idx++) {
411 for (idx = 0; idx < count; idx++) {
422 for (idx = 0; idx < count; idx++) {
459 count = sizeof(snd_aes_iec958_t);
462 if (strlen(value) != count * 2) {
463 Perror(space, "bad ctl value hexa length (should be %u bytes)", count);
466 for (idx = 0; idx < count; idx += 2) {
591 if (strncasecmp(attr, "count", 5) == 0) {
1012 int count;
1171 count = replace_untrusted_chars(temp2);
1172 if (count > 0)
1173 Perror(space, "%i untrusted character(s) replaced" , count);
1294 int err = 0, count;
1400 count = replace_untrusted_chars(result);
1401 if (count)
1402 info("%i untrusted character(s) replaced", count);
1520 count = strlen(string);
1522 string[count] = '\0';
1581 count = access(string, F_OK);
1582 dbg("access(%s) = %i (%s)", string, count, value);
1583 if (op == KEY_OP_MATCH && count != 0)
1585 if (op == KEY_OP_NOMATCH && count == 0)
1662 size_t bufsize, pos, count, linesize;
1685 count = line_width(buf, bufsize, pos);
1687 pos += count + 1;
1691 while (count > 0 && isspace(bufline[0])) {
1693 count--;
1695 if (count == 0)
1702 if (count > linesize - 1) {
1705 linesize = (count + 127 + 1) & ~127;
1720 for (i = j = 0; i < count; i++) {