OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BITSET_WORDBITS
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/mesa/src/src/mesa/main/
bitset.h
41
#define
BITSET_WORDBITS
(sizeof (BITSET_WORD) * 8)
46
BITSET_WORD name[((size) +
BITSET_WORDBITS
- 1) /
BITSET_WORDBITS
]
55
#define BITSET_BITWORD(b) ((b) /
BITSET_WORDBITS
)
56
#define BITSET_BIT(b) (1 << ((b) %
BITSET_WORDBITS
))
64
#define BITSET_MASK(b) ((b) ==
BITSET_WORDBITS
? ~0 : BITSET_BIT(b) - 1)
91
return ffs(x[i]) +
BITSET_WORDBITS
* i;
/external/mesa3d/src/mesa/main/
bitset.h
41
#define
BITSET_WORDBITS
(sizeof (BITSET_WORD) * 8)
46
BITSET_WORD name[((size) +
BITSET_WORDBITS
- 1) /
BITSET_WORDBITS
]
55
#define BITSET_BITWORD(b) ((b) /
BITSET_WORDBITS
)
56
#define BITSET_BIT(b) (1 << ((b) %
BITSET_WORDBITS
))
64
#define BITSET_MASK(b) ((b) ==
BITSET_WORDBITS
? ~0 : BITSET_BIT(b) - 1)
91
return ffs(x[i]) +
BITSET_WORDBITS
* i;
Completed in 25 milliseconds