Home
last modified time | relevance | path

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

/third_party/python/Python/
Dhamt.c2293 PyHamtObject *new_o; in _PyHamt_Assoc() local
2313 new_o = hamt_alloc(); in _PyHamt_Assoc()
2314 if (new_o == NULL) { in _PyHamt_Assoc()
2319 new_o->h_root = new_root; /* borrow */ in _PyHamt_Assoc()
2320 new_o->h_count = added_leaf ? o->h_count + 1 : o->h_count; in _PyHamt_Assoc()
2322 return new_o; in _PyHamt_Assoc()
2351 PyHamtObject *new_o = hamt_alloc(); in _PyHamt_Without() local
2352 if (new_o == NULL) { in _PyHamt_Without()
2357 new_o->h_root = new_root; /* borrow */ in _PyHamt_Without()
2358 new_o->h_count = o->h_count - 1; in _PyHamt_Without()
[all …]