Searched refs:free_slot (Results 1 – 1 of 1) sorted by relevance
245 zend_mm_free_slot *free_slot[ZEND_MM_BINS]; /* free lists for small sizes */ member1274 heap->free_slot[bin_num] = p = (zend_mm_free_slot*)((char*)bin + bin_data_size[bin_num]);1310 if (EXPECTED(heap->free_slot[bin_num] != NULL)) {1311 zend_mm_free_slot *p = heap->free_slot[bin_num];1312 heap->free_slot[bin_num] = p->next_free_slot;1335 p->next_free_slot = heap->free_slot[bin_num];1336 heap->free_slot[bin_num] = p;1968 p = heap->free_slot[i];1996 q = &heap->free_slot[i];2360 memset(heap->free_slot, 0, sizeof(heap->free_slot));[all …]
Completed in 17 milliseconds