Lines Matching refs:new_o
2311 PyHamtObject *new_o; in _PyHamt_Assoc() local
2331 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() local
2370 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()
2377 assert(new_o->h_count >= 0); in _PyHamt_Without()
2378 return new_o; in _PyHamt_Without()