Home
last modified time | relevance | path

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

/PHP-8.2/Zend/
H A Dzend_alloc.c2437 zval *size_zv = zend_hash_index_find(AG(mm_heap)->tracked_allocs, h); local
2438 if (size_zv) {
2799 zval size_zv; local
2802 ZVAL_LONG(&size_zv, size);
2803 zend_hash_index_add_new(heap->tracked_allocs, h, &size_zv);
2808 zval *size_zv = zend_hash_index_find(heap->tracked_allocs, h); local
2809 ZEND_ASSERT(size_zv && "Trying to free pointer not allocated through ZendMM");
2810 return size_zv;
2848 zval *size_zv = tracked_get_size_zv(heap, ptr); local
2849 heap->size -= Z_LVAL_P(size_zv);
[all …]

Completed in 13 milliseconds