Home
last modified time | relevance | path

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

/PHP-7.1/Zend/
H A Dzend_alloc.c243 zend_mm_free_slot *free_slot[ZEND_MM_BINS]; /* free lists for small sizes */ member
1235 heap->free_slot[bin_num] = p = (zend_mm_free_slot*)((char*)bin + bin_data_size[bin_num]);
1271 if (EXPECTED(heap->free_slot[bin_num] != NULL)) {
1272 zend_mm_free_slot *p = heap->free_slot[bin_num];
1273 heap->free_slot[bin_num] = p->next_free_slot;
1296 p->next_free_slot = heap->free_slot[bin_num];
1297 heap->free_slot[bin_num] = p;
1877 p = heap->free_slot[i];
1905 q = &heap->free_slot[i];
2241 memset(heap->free_slot, 0, sizeof(heap->free_slot));
[all …]

Completed in 12 milliseconds