Home
last modified time | relevance | path

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

/PHP-7.3/Zend/
H A Dzend_alloc.c239 zend_mm_free_slot *free_slot[ZEND_MM_BINS]; /* free lists for small sizes */ member
1251 heap->free_slot[bin_num] = p = (zend_mm_free_slot*)((char*)bin + bin_data_size[bin_num]);
1287 if (EXPECTED(heap->free_slot[bin_num] != NULL)) {
1288 zend_mm_free_slot *p = heap->free_slot[bin_num];
1289 heap->free_slot[bin_num] = p->next_free_slot;
1312 p->next_free_slot = heap->free_slot[bin_num];
1313 heap->free_slot[bin_num] = p;
1953 p = heap->free_slot[i];
1981 q = &heap->free_slot[i];
2318 memset(heap->free_slot, 0, sizeof(heap->free_slot));
[all …]

Completed in 15 milliseconds