* Returns TRUE if the specified node is a leaf and FALSE otherwise. */
| 228 | * Returns TRUE if the specified node is a leaf and FALSE otherwise. |
| 229 | */ |
| 230 | static __inline bool |
| 231 | pctrie_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. |
no outgoing calls
no test coverage detected