Lines Matching full:fetch
25 * @FETCH: The expression that fetches and pre-processes each word of bitmap(s)
29 #define FIND_FIRST_BIT(FETCH, MUNGE, size) \
34 val = (FETCH); \
46 * @FETCH: The expression that fetches and pre-processes each word of bitmap(s)
51 #define FIND_NEXT_BIT(FETCH, MUNGE, size, start) \
61 for (tmp = (FETCH) & mask; !tmp; tmp = (FETCH)) { \
72 #define FIND_NTH_BIT(FETCH, size, num) \
80 tmp = (FETCH); \
89 tmp = (FETCH) & BITMAP_LAST_WORD_MASK(sz); \