Searched refs:new_o (Results 1 – 1 of 1) sorted by relevance
2311 PyHamtObject *new_o; in _PyHamt_Assoc() local2331 new_o = hamt_alloc(); in _PyHamt_Assoc()2332 if (new_o == NULL) { in _PyHamt_Assoc()2337 new_o->h_root = new_root; /* borrow */ in _PyHamt_Assoc()2338 new_o->h_count = added_leaf ? o->h_count + 1 : o->h_count; in _PyHamt_Assoc()2340 return new_o; in _PyHamt_Assoc()2369 PyHamtObject *new_o = hamt_alloc(); in _PyHamt_Without() local2370 if (new_o == NULL) { in _PyHamt_Without()2375 new_o->h_root = new_root; /* borrow */ in _PyHamt_Without()2376 new_o->h_count = o->h_count - 1; in _PyHamt_Without()[all …]