Lines Matching refs:map_ptr_size
738 compiler_globals->map_ptr_size = 0; in compiler_globals_ctor()
743 compiler_globals->map_ptr_size = ZEND_MM_ALIGNED_SIZE_EX(compiler_globals->map_ptr_last, 4096); in compiler_globals_ctor()
744 …void *base = pemalloc((zend_map_ptr_static_size + compiler_globals->map_ptr_size) * sizeof(void*),… in compiler_globals_ctor()
790 compiler_globals->map_ptr_size = 0; in compiler_globals_dtor()
1048 CG(map_ptr_size) = 0; in zend_startup()
1208 CG(map_ptr_size) = 0; in zend_shutdown()
2020 if (CG(map_ptr_last) >= CG(map_ptr_size)) { in zend_map_ptr_new()
2022 CG(map_ptr_size) = ZEND_MM_ALIGNED_SIZE_EX(CG(map_ptr_last) + 1, 4096); in zend_map_ptr_new()
2023 …se) = perealloc(CG(map_ptr_real_base), (zend_map_ptr_static_size + CG(map_ptr_size)) * sizeof(void… in zend_map_ptr_new()
2039 void *new_base = pemalloc((zend_map_ptr_static_size + CG(map_ptr_size)) * sizeof(void*), 1); in zend_map_ptr_new_static()
2058 if (last >= CG(map_ptr_size)) { in zend_map_ptr_extend()
2060 CG(map_ptr_size) = ZEND_MM_ALIGNED_SIZE_EX(last, 4096); in zend_map_ptr_extend()
2061 …se) = perealloc(CG(map_ptr_real_base), (zend_map_ptr_static_size + CG(map_ptr_size)) * sizeof(void… in zend_map_ptr_extend()