OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BITSET64_BITWORD
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/mesa/src/src/mesa/main/
bitset.h
118
#define
BITSET64_BITWORD
(b) ((b) / BITSET64_WORDBITS)
123
#define BITSET64_TEST(x, b) ((x)[
BITSET64_BITWORD
(b)] & BITSET64_BIT(b))
124
#define BITSET64_SET(x, b) ((x)[
BITSET64_BITWORD
(b)] |= BITSET64_BIT(b))
125
#define BITSET64_CLEAR(x, b) ((x)[
BITSET64_BITWORD
(b)] &= ~BITSET64_BIT(b))
133
(
BITSET64_BITWORD
(b) ==
BITSET64_BITWORD
(e) ? \
134
((x)[
BITSET64_BITWORD
(b)] & BITSET64_RANGE(b, e)) : \
137
(
BITSET64_BITWORD
(b) ==
BITSET64_BITWORD
(e) ? \
142
(
BITSET64_BITWORD
(b) == BITSET64_BITWORD(e) ?
[
all
...]
/external/mesa3d/src/mesa/main/
bitset.h
118
#define
BITSET64_BITWORD
(b) ((b) / BITSET64_WORDBITS)
123
#define BITSET64_TEST(x, b) ((x)[
BITSET64_BITWORD
(b)] & BITSET64_BIT(b))
124
#define BITSET64_SET(x, b) ((x)[
BITSET64_BITWORD
(b)] |= BITSET64_BIT(b))
125
#define BITSET64_CLEAR(x, b) ((x)[
BITSET64_BITWORD
(b)] &= ~BITSET64_BIT(b))
133
(
BITSET64_BITWORD
(b) ==
BITSET64_BITWORD
(e) ? \
134
((x)[
BITSET64_BITWORD
(b)] & BITSET64_RANGE(b, e)) : \
137
(
BITSET64_BITWORD
(b) ==
BITSET64_BITWORD
(e) ? \
142
(
BITSET64_BITWORD
(b) == BITSET64_BITWORD(e) ?
[
all
...]
Completed in 65 milliseconds