Lines Matching defs:count
56 /* 32-bit count of alive CPUs. This includes both CPs and IFAs */
233 int uv_cpu_info(uv_cpu_info_t** cpu_infos, int* count) {
249 *count = *((int*) (csd.deref + CSD_NUMBER_ONLINE_CPUS));
252 *cpu_infos = uv__malloc(*count * sizeof(uv_cpu_info_t));
258 while (idx < *count) {
281 int* count) {
292 *count = 0;
331 ++(*count);
334 if ((*count) == 0) {
341 *addresses = uv__calloc(1, *count * sizeof(uv_interface_address_t));
361 /* All conditions above must match count loop */
403 int uv_interface_addresses(uv_interface_address_t** addresses, int* count) {
417 *count = 0;
481 (*count)++;
484 if (*count == 0 && count_v6 == 0) {
491 *addresses = uv__calloc(1, (*count + count_v6) *
507 *count += count_v6;
512 count_names = *count;
534 /* All conditions above must match count loop */
579 int count) {
581 for (i = 0; i < count; ++i)
823 int count;
880 count = 48; /* Benchmarks suggest this gives the best throughput. */
1036 if (nfds == ARRAY_SIZE(events) && --count != 0) {