Lines Matching defs:count
164 * \brief get count of poll descriptors for HCTL handle
166 * \return count of poll descriptors
179 * \return count of filled descriptors
191 * \param nfds count of poll descriptors
331 u = hctl->count;
351 if (hctl->count == hctl->alloc) {
361 if (hctl->count == 0) {
375 (hctl->count - idx) * sizeof(snd_hctl_elem_t *));
378 hctl->count++;
389 hctl->count--;
390 m = hctl->count - idx;
404 while (hctl->count > 0)
405 snd_hctl_elem_remove(hctl, hctl->count - 1);
434 qsort(hctl->pelems, hctl->count, sizeof(*hctl->pelems), hctl_compare);
438 for (k = 0; k < hctl->count; k++)
573 assert(hctl->count == 0);
578 while (list.count != list.used) {
579 err = snd_ctl_elem_list_alloc_space(&list, list.count);
585 if (hctl->alloc < list.count) {
586 hctl->alloc = list.count;
594 for (idx = 0; idx < list.count; idx++) {
607 hctl->count++;
612 for (idx = 0; idx < hctl->count; idx++) {
660 * \return elements count
664 return hctl->count;
783 unsigned int count = 0;
794 count++;
796 return count;