MCPcopy Create free account
hub / github.com/F-Stack/f-stack / pctrie_isleaf

Function pctrie_isleaf

freebsd/kern/subr_pctrie.c:230–235  ·  view source on GitHub ↗

* Returns TRUE if the specified node is a leaf and FALSE otherwise. */

Source from the content-addressed store, hash-verified

228 * Returns TRUE if the specified node is a leaf and FALSE otherwise.
229 */
230static __inline bool
231pctrie_isleaf(struct pctrie_node *node)
232{
233
234 return (((uintptr_t)node & PCTRIE_ISLEAF) != 0);
235}
236
237/*
238 * Returns the associated val extracted from node.

Callers 8

pctrie_insertFunction · 0.85
_pctrie_lookupFunction · 0.85
pctrie_lookup_geFunction · 0.85
pctrie_lookup_leFunction · 0.85
pctrie_removeFunction · 0.85
pctrie_reclaim_allnodesFunction · 0.85
subr_pctrie.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected