* Returns the associated val extracted from node. */
| 238 | * Returns the associated val extracted from node. |
| 239 | */ |
| 240 | static __inline uint64_t * |
| 241 | pctrie_toval(struct pctrie_node *node) |
| 242 | { |
| 243 | |
| 244 | return ((uint64_t *)((uintptr_t)node & ~PCTRIE_FLAGS)); |
| 245 | } |
| 246 | |
| 247 | /* |
| 248 | * Adds the val as a child of the provided node. |
no outgoing calls
no test coverage detected