Lines Matching defs:alloc
198 ht->alloc.free(entry);
222 entry = ht->alloc.malloc(sizeof(_Py_hashtable_entry_t));
236 ht->alloc.free(entry);
288 _Py_slist_t *new_buckets = ht->alloc.malloc(buckets_size);
308 ht->alloc.free(ht->buckets);
322 _Py_hashtable_allocator_t alloc;
324 alloc.malloc = PyMem_Malloc;
325 alloc.free = PyMem_Free;
328 alloc = *allocator;
331 _Py_hashtable_t *ht = (_Py_hashtable_t *)alloc.malloc(sizeof(_Py_hashtable_t));
340 ht->buckets = alloc.malloc(buckets_size);
342 alloc.free(ht);
352 ht->alloc = alloc;
380 ht->alloc.free(entry);
415 ht->alloc.free(ht->buckets);
416 ht->alloc.free(ht);