OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NUM_GRAPHS
(Results
1 - 2
of
2
) sorted by null
/external/llvm/unittests/ADT/
SCCIteratorTest.cpp
249
#define
NUM_GRAPHS
(NUM_NODES * (NUM_NODES - 1))
252
/// Enumerate all graphs using
NUM_GRAPHS
bits.
253
static_assert(
NUM_GRAPHS
< sizeof(unsigned) * CHAR_BIT, "Too many graphs!");
254
for (unsigned GraphDescriptor = 0; GraphDescriptor < (1U <<
NUM_GRAPHS
);
/external/swiftshader/third_party/LLVM/unittests/ADT/
SCCIteratorTest.cpp
251
#define
NUM_GRAPHS
(NUM_NODES * (NUM_NODES - 1))
254
/// Enumerate all graphs using
NUM_GRAPHS
bits.
255
assert(
NUM_GRAPHS
< sizeof(unsigned) * CHAR_BIT && "Too many graphs!");
256
for (unsigned GraphDescriptor = 0; GraphDescriptor < (1U <<
NUM_GRAPHS
);
Completed in 59 milliseconds