Searched refs:srcp (Results 1 – 1 of 1) sorted by relevance
/lib/ |
D | cpumask.c | 8 int __first_cpu(const cpumask_t *srcp) in __first_cpu() argument 10 return min_t(int, NR_CPUS, find_first_bit(srcp->bits, NR_CPUS)); in __first_cpu() 14 int __next_cpu(int n, const cpumask_t *srcp) in __next_cpu() argument 16 return min_t(int, NR_CPUS, find_next_bit(srcp->bits, NR_CPUS, n+1)); in __next_cpu() 21 int __next_cpu_nr(int n, const cpumask_t *srcp) in __next_cpu_nr() argument 24 find_next_bit(srcp->bits, nr_cpu_ids, n+1)); in __next_cpu_nr()
|