Lines Matching defs:size
38 * is not what we want to stress. The size of the fdmap can be adjusted
157 static void shuffle(void *array, size_t n, size_t size)
166 aux = calloc(1, size);
172 j *= size;
174 memcpy(aux, &carray[j], size);
175 memcpy(&carray[j], &carray[i*size], size);
176 memcpy(&carray[i*size], aux, size);
299 size_t size;
315 size = CPU_ALLOC_SIZE(nrcpus);
352 CPU_ZERO_S(size, cpuset);
354 size, cpuset);
356 ret = pthread_attr_setaffinity_np(&thread_attr, size, cpuset);