Home
last modified time | relevance | path

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

/PHP-7.4/Zend/
H A Dzend_alloc.c243 zend_mm_free_slot *free_slot[ZEND_MM_BINS]; /* free lists for small sizes */ member
1217 heap->free_slot[bin_num] = p = (zend_mm_free_slot*)((char*)bin + bin_data_size[bin_num]);
1253 if (EXPECTED(heap->free_slot[bin_num] != NULL)) {
1254 zend_mm_free_slot *p = heap->free_slot[bin_num];
1255 heap->free_slot[bin_num] = p->next_free_slot;
1278 p->next_free_slot = heap->free_slot[bin_num];
1279 heap->free_slot[bin_num] = p;
1915 p = heap->free_slot[i];
1943 q = &heap->free_slot[i];
2303 memset(heap->free_slot, 0, sizeof(heap->free_slot));
[all …]

Completed in 12 milliseconds