Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / include / linux / find.h
blob38c0a542b0e2f20a6852305f4cb2d2fff307f7c6
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _TOOLS_LINUX_FIND_H_
3 #define _TOOLS_LINUX_FIND_H_
5 #ifndef _TOOLS_LINUX_BITMAP_H
6 #error tools: only <linux/bitmap.h> can be included directly
7 #endif
9 #include <linux/bitops.h>
11 unsigned long _find_next_bit(const unsigned long *addr1, unsigned long nbits,
12 unsigned long start);
13 unsigned long _find_next_and_bit(const unsigned long *addr1, const unsigned long *addr2,
14 unsigned long nbits, unsigned long start);
15 unsigned long _find_next_zero_bit(const unsigned long *addr, unsigned long nbits,
16 unsigned long start);
17 extern unsigned long _find_first_bit(const unsigned long *addr, unsigned long size);
18 extern unsigned long _find_first_and_bit(const unsigned long *addr1,
19 const unsigned long *addr2, unsigned long size);
20 extern unsigned long _find_first_zero_bit(const unsigned long *addr, unsigned long size);
22 #ifndef find_next_bit
23 /**
24 * find_next_bit - find the next set bit in a memory region
25 * @addr: The address to base the search on
26 * @size: The bitmap size in bits
27 * @offset: The bitnumber to start searching at
29 * Returns the bit number for the next set bit
30 * If no bits are set, returns @size.
32 static inline
33 unsigned long find_next_bit(const unsigned long *addr, unsigned long size,
34 unsigned long offset)
36 if (small_const_nbits(size)) {
37 unsigned long val;
39 if (unlikely(offset >= size))
40 return size;
42 val = *addr & GENMASK(size - 1, offset);
43 return val ? __ffs(val) : size;
46 return _find_next_bit(addr, size, offset);
48 #endif
50 #ifndef find_next_and_bit
51 /**
52 * find_next_and_bit - find the next set bit in both memory regions
53 * @addr1: The first address to base the search on
54 * @addr2: The second address to base the search on
55 * @size: The bitmap size in bits
56 * @offset: The bitnumber to start searching at
58 * Returns the bit number for the next set bit
59 * If no bits are set, returns @size.
61 static inline
62 unsigned long find_next_and_bit(const unsigned long *addr1,
63 const unsigned long *addr2, unsigned long size,
64 unsigned long offset)
66 if (small_const_nbits(size)) {
67 unsigned long val;
69 if (unlikely(offset >= size))
70 return size;
72 val = *addr1 & *addr2 & GENMASK(size - 1, offset);
73 return val ? __ffs(val) : size;
76 return _find_next_and_bit(addr1, addr2, size, offset);
78 #endif
80 #ifndef find_next_zero_bit
81 /**
82 * find_next_zero_bit - find the next cleared bit in a memory region
83 * @addr: The address to base the search on
84 * @size: The bitmap size in bits
85 * @offset: The bitnumber to start searching at
87 * Returns the bit number of the next zero bit
88 * If no bits are zero, returns @size.
90 static inline
91 unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size,
92 unsigned long offset)
94 if (small_const_nbits(size)) {
95 unsigned long val;
97 if (unlikely(offset >= size))
98 return size;
100 val = *addr | ~GENMASK(size - 1, offset);
101 return val == ~0UL ? size : ffz(val);
104 return _find_next_zero_bit(addr, size, offset);
106 #endif
108 #ifndef find_first_bit
110 * find_first_bit - find the first set bit in a memory region
111 * @addr: The address to start the search at
112 * @size: The maximum number of bits to search
114 * Returns the bit number of the first set bit.
115 * If no bits are set, returns @size.
117 static inline
118 unsigned long find_first_bit(const unsigned long *addr, unsigned long size)
120 if (small_const_nbits(size)) {
121 unsigned long val = *addr & GENMASK(size - 1, 0);
123 return val ? __ffs(val) : size;
126 return _find_first_bit(addr, size);
128 #endif
130 #ifndef find_first_and_bit
132 * find_first_and_bit - find the first set bit in both memory regions
133 * @addr1: The first address to base the search on
134 * @addr2: The second address to base the search on
135 * @size: The bitmap size in bits
137 * Returns the bit number for the next set bit
138 * If no bits are set, returns @size.
140 static inline
141 unsigned long find_first_and_bit(const unsigned long *addr1,
142 const unsigned long *addr2,
143 unsigned long size)
145 if (small_const_nbits(size)) {
146 unsigned long val = *addr1 & *addr2 & GENMASK(size - 1, 0);
148 return val ? __ffs(val) : size;
151 return _find_first_and_bit(addr1, addr2, size);
153 #endif
155 #ifndef find_first_zero_bit
157 * find_first_zero_bit - find the first cleared bit in a memory region
158 * @addr: The address to start the search at
159 * @size: The maximum number of bits to search
161 * Returns the bit number of the first cleared bit.
162 * If no bits are zero, returns @size.
164 static inline
165 unsigned long find_first_zero_bit(const unsigned long *addr, unsigned long size)
167 if (small_const_nbits(size)) {
168 unsigned long val = *addr | ~GENMASK(size - 1, 0);
170 return val == ~0UL ? size : ffz(val);
173 return _find_first_zero_bit(addr, size);
175 #endif
177 #endif /*__LINUX_FIND_H_ */