H A D | find_bit.c | 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) 28 FIND_FIRST_BIT(FETCH,MUNGE,size) global() argument 50 FIND_NEXT_BIT(FETCH,MUNGE,size,start) global() argument 71 FIND_NTH_BIT(FETCH,size,num) global() argument [all...] |