Lines Matching defs:root
2297 /* Frees all nodes at or after a specified root in the strong cache.
2299 * This can be used on the root node to free the entire cache or it can be used
2304 strong_cache_free(StrongCacheNode *root)
2306 StrongCacheNode *node = root;
2345 * root may be NULL, indicating an empty cache.
2348 find_in_strong_cache(const StrongCacheNode *const root, PyObject *const key)
2350 const StrongCacheNode *node = root;
2395 move_strong_cache_node_to_front(StrongCacheNode **root, StrongCacheNode *node)
2397 StrongCacheNode *root_p = *root;
2411 *root = node;