Lines Matching defs:count
99 * @return The click count of the wheel (may be negative) or 0 on error.
104 int count = 0;
109 if (!safe_atoi(prop, &count) || abs(count) > 360)
112 return count;
443 size_t count;
444 char **strv = strv_from_string(prop, ";", &count);
445 if (!strv || count == 0 || count > ARRAY_LENGTH(props))
448 count = min(*nprops, count);
476 memcpy(props_out, props, count * sizeof *props);
477 *nprops = count;