Searched refs:PCTRIE_COUNT (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/sys/kern/
H A Dsubr_pctrie.c72 #define PCTRIE_COUNT (1 << PCTRIE_WIDTH) macro
73 #define PCTRIE_MASK (PCTRIE_COUNT - 1)
89 void *pn_child[PCTRIE_COUNT]; /* Child nodes. */
125 for (slot = 0; slot < PCTRIE_COUNT; slot++)
252 KASSERT(node->pn_count <= PCTRIE_COUNT,
435 node->pn_clev) == (PCTRIE_COUNT - 1));
440 * is less than PCTRIE_COUNT - 1.
463 if (slot < (PCTRIE_COUNT - 1)) {
476 } while (slot < (PCTRIE_COUNT - 1));
532 index = node->pn_owner + PCTRIE_COUNT *
[all...]

Completed in 48 milliseconds