Lines Matching refs:_heap
3126 zend_mm_heap *_heap = (zend_mm_heap*)heap; local
3129 _heap->use_custom_heap = ZEND_MM_CUSTOM_HEAP_NONE;
3131 _heap->use_custom_heap = ZEND_MM_CUSTOM_HEAP_STD;
3132 _heap->custom_heap._malloc = _malloc;
3133 _heap->custom_heap._free = _free;
3134 _heap->custom_heap._realloc = _realloc;
3135 _heap->custom_heap._gc = _gc;
3136 _heap->custom_heap._shutdown = _shutdown;
3159 zend_mm_heap *_heap = (zend_mm_heap*)heap; local
3162 *_malloc = _heap->custom_heap._malloc;
3163 *_free = _heap->custom_heap._free;
3164 *_realloc = _heap->custom_heap._realloc;
3166 *_gc = _heap->custom_heap._gc;
3169 *_shutdown = _heap->custom_heap._shutdown;