OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RTREE_BITS_PER_LEVEL
(Results
1 - 2
of
2
) sorted by null
/external/jemalloc/src/
rtree.c
20
bits_in_leaf = (bits %
RTREE_BITS_PER_LEVEL
) == 0 ?
RTREE_BITS_PER_LEVEL
21
: (bits %
RTREE_BITS_PER_LEVEL
);
23
height = 1 + (bits - bits_in_leaf) /
RTREE_BITS_PER_LEVEL
;
24
if ((height-1) *
RTREE_BITS_PER_LEVEL
+ bits_in_leaf != bits)
28
assert((height-1) *
RTREE_BITS_PER_LEVEL
+ bits_in_leaf == bits);
36
rtree->levels[0].bits = (height > 1) ?
RTREE_BITS_PER_LEVEL
:
42
rtree->levels[i].bits =
RTREE_BITS_PER_LEVEL
;
44
RTREE_BITS_PER_LEVEL
;
/external/jemalloc/include/jemalloc/internal/
rtree.h
14
*
RTREE_BITS_PER_LEVEL
must be a power of two that is no larger than the
18
#define
RTREE_BITS_PER_LEVEL
(ZU(1) << LG_RTREE_BITS_PER_LEVEL)
20
((ZU(1) << (LG_SIZEOF_PTR+3)) /
RTREE_BITS_PER_LEVEL
)
Completed in 475 milliseconds