Searched refs:srcp (Results 1 – 1 of 1) sorted by relevance
/lib/ |
D | cpumask.c | 7 int __first_cpu(const cpumask_t *srcp) in __first_cpu() argument 9 return min_t(int, NR_CPUS, find_first_bit(srcp->bits, NR_CPUS)); in __first_cpu() 13 int __next_cpu(int n, const cpumask_t *srcp) in __next_cpu() argument 15 return min_t(int, NR_CPUS, find_next_bit(srcp->bits, NR_CPUS, n+1)); in __next_cpu() 20 int __next_cpu_nr(int n, const cpumask_t *srcp) in __next_cpu_nr() argument 23 find_next_bit(srcp->bits, nr_cpu_ids, n+1)); in __next_cpu_nr()
|