Lines Matching refs:_heap
2687 zend_mm_heap *_heap = (zend_mm_heap*)heap; local
2689 _heap->use_custom_heap = ZEND_MM_CUSTOM_HEAP_STD;
2690 _heap->custom_heap.std._malloc = _malloc;
2691 _heap->custom_heap.std._free = _free;
2692 _heap->custom_heap.std._realloc = _realloc;
2702 zend_mm_heap *_heap = (zend_mm_heap*)heap; local
2705 *_malloc = _heap->custom_heap.std._malloc;
2706 *_free = _heap->custom_heap.std._free;
2707 *_realloc = _heap->custom_heap.std._realloc;
2727 zend_mm_heap *_heap = (zend_mm_heap*)heap; local
2729 _heap->use_custom_heap = ZEND_MM_CUSTOM_HEAP_DEBUG;
2730 _heap->custom_heap.debug._malloc = _malloc;
2731 _heap->custom_heap.debug._free = _free;
2732 _heap->custom_heap.debug._realloc = _realloc;