Home
last modified time | relevance | path

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

/PHP-8.4/Zend/
H A Dzend_map_ptr.h72 ((void*)(((uintptr_t)(real_base)) + zend_map_ptr_static_size * sizeof(void *) - 1))
86 ZEND_API extern size_t zend_map_ptr_static_size;
H A Dzend.c741 if (compiler_globals->map_ptr_last || zend_map_ptr_static_size) { in compiler_globals_ctor()
744 …void *base = pemalloc((zend_map_ptr_static_size + compiler_globals->map_ptr_size) * sizeof(void*),… in compiler_globals_ctor()
747 memset(base, 0, (zend_map_ptr_static_size + compiler_globals->map_ptr_last) * sizeof(void*)); in compiler_globals_ctor()
1221 zend_map_ptr_static_size = 0; in zend_shutdown()
1322 …memset((void **)CG(map_ptr_real_base) + zend_map_ptr_static_size, 0, CG(map_ptr_last) * sizeof(voi… in zend_activate()
2008 ZEND_API size_t zend_map_ptr_static_size; variable
2026 ptr = (void**)CG(map_ptr_real_base) + zend_map_ptr_static_size + CG(map_ptr_last); in zend_map_ptr_new()
2036 if (zend_map_ptr_static_last >= zend_map_ptr_static_size) { in zend_map_ptr_new_static()
2037 zend_map_ptr_static_size += 4096; in zend_map_ptr_new_static()
2039 void *new_base = pemalloc((zend_map_ptr_static_size + CG(map_ptr_size)) * sizeof(void*), 1); in zend_map_ptr_new_static()
[all …]

Completed in 9 milliseconds