Lines Matching refs:map_ptr_last

739 	compiler_globals->map_ptr_last = global_map_ptr_last;  in compiler_globals_ctor()
741 if (compiler_globals->map_ptr_last || zend_map_ptr_static_size) { 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()
747 memset(base, 0, (zend_map_ptr_static_size + compiler_globals->map_ptr_last) * sizeof(void*)); in compiler_globals_ctor()
1047 CG(map_ptr_last) = 0; in zend_startup()
1112 global_map_ptr_last = compiler_globals->map_ptr_last; in zend_post_startup()
1144 global_map_ptr_last = CG(map_ptr_last); in zend_post_startup()
1315 if (CG(map_ptr_last)) { in zend_activate()
1316 …memset((void **)CG(map_ptr_real_base) + zend_map_ptr_static_size, 0, CG(map_ptr_last) * sizeof(voi… in zend_activate()
2007 CG(map_ptr_last) = global_map_ptr_last; in zend_map_ptr_reset()
2014 if (CG(map_ptr_last) >= CG(map_ptr_size)) { in zend_map_ptr_new()
2016 CG(map_ptr_size) = ZEND_MM_ALIGNED_SIZE_EX(CG(map_ptr_last) + 1, 4096); in zend_map_ptr_new()
2020 ptr = (void**)CG(map_ptr_real_base) + zend_map_ptr_static_size + CG(map_ptr_last); in zend_map_ptr_new()
2022 CG(map_ptr_last)++; in zend_map_ptr_new()
2035 …memcpy((void **)new_base + 4096, CG(map_ptr_real_base), (CG(map_ptr_last) + zend_map_ptr_static_si… in zend_map_ptr_new_static()
2049 if (last > CG(map_ptr_last)) { in zend_map_ptr_extend()
2058 ptr = (void**)CG(map_ptr_real_base) + zend_map_ptr_static_size + CG(map_ptr_last); in zend_map_ptr_extend()
2059 memset(ptr, 0, (last - CG(map_ptr_last)) * sizeof(void*)); in zend_map_ptr_extend()
2060 CG(map_ptr_last) = last; in zend_map_ptr_extend()