Home
last modified time | relevance | path

Searched refs:h_root (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dhamt.c2321 (PyHamtNode *)(o->h_root), in _PyHamt_Assoc()
2327 if (new_root == o->h_root) { in _PyHamt_Assoc()
2339 new_o->h_root = new_root; /* borrow */ in _PyHamt_Assoc()
2356 (PyHamtNode *)(o->h_root), in _PyHamt_Without()
2377 new_o->h_root = new_root; /* borrow */ in _PyHamt_Without()
2399 return hamt_node_find(o->h_root, 0, key_hash, key, val); in hamt_find()
2438 hamt_iterator_init(&iter, v->h_root); in _PyHamt_Eq()
2482 o->h_root = NULL; in hamt_alloc()
2503 o->h_root = hamt_node_bitmap_new(0); in _PyHamt_New()
2504 if (o->h_root == NULL) { in _PyHamt_New()
[all …]
/external/python/cpython3/Include/internal/
Dpycore_hamt.h23 PyHamtNode *h_root; member