Home
last modified time | relevance | path

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

/PHP-8.0/Zend/
H A Dzend_vm_execute.skl95 …zend_hash_index_add(zend_handlers_table, (zend_long)(zend_uintptr_t)zend_opcode_handlers[i], &tmp);
106 zv = zend_hash_index_find(zend_handlers_table, (zend_long)(zend_uintptr_t)op->handler);
108 op->handler = (const void *)(zend_uintptr_t)Z_LVAL_P(zv);
113 op->handler = zend_opcode_handlers[(zend_uintptr_t)op->handler];
126 zv = zend_hash_index_find(zend_handlers_table, (zend_long)(zend_uintptr_t)op->handler);
H A Dzend_objects_API.h28 #define IS_OBJ_VALID(o) (!(((zend_uintptr_t)(o)) & OBJ_BUCKET_INVALID))
30 #define SET_OBJ_INVALID(o) ((zend_object*)((((zend_uintptr_t)(o)) | OBJ_BUCKET_INVALID)))
35 (o) = (zend_object*)((((zend_uintptr_t)(n)) << 1) | OBJ_BUCKET_INVALID); \
H A Dzend_portability.h639 #define ZEND_SLIDE_TO_ALIGNED(alignment, ptr) (((zend_uintptr_t)(ptr) + ((alignment)-1)) & ~((align…
H A Dzend_object_handlers.c494 if (EXPECTED(!(((zend_uintptr_t)ptr) & 1))) { in zend_property_guard_dtor()
524 (void*)(((zend_uintptr_t)&Z_PROPERTY_GUARD_P(zv)) | 1)); in zend_get_property_guard()
533 return (uint32_t*)(((zend_uintptr_t)Z_PTR_P(zv)) & ~1); in zend_get_property_guard()
H A Dzend_alloc.c719 …ZEND_ASSERT(((zend_uintptr_t)((char*)ptr + (alignment-1)) & (alignment-1)) == (zend_uintptr_t)ptr);
2120 zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *)(zend_uintptr_t)repeated);
2159 zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *)(zend_uintptr_t)repeated);
2185 zend_message_dispatcher(ZMSG_MEMORY_LEAK_REPEATED, (void *)(zend_uintptr_t)repeated);
H A Dzend_API.h147 { (const char*)(zend_uintptr_t)(required_num_args), \
155 …{ (const char*)(zend_uintptr_t)(required_num_args), ZEND_TYPE_INIT_MASK(type | _ZEND_ARG_INFO_FLAG…
159 …{ (const char*)(zend_uintptr_t)(required_num_args), ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, t…
163 …{ (const char*)(zend_uintptr_t)(required_num_args), ZEND_TYPE_INIT_CODE(type, allow_null, _ZEND_AR…
169 …{ (const char*)(zend_uintptr_t)(required_num_args), ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(retur…
H A Dzend_compile.h408 zend_uintptr_t required_num_args;
H A Dzend_types.h75 typedef uintptr_t zend_uintptr_t; typedef
H A Dzend_API.c2367 if (info->required_num_args == (zend_uintptr_t)-1) { in ZEND_END_ARG_INFO()
H A Dzend_vm_execute.h63222 …zend_hash_index_add(zend_handlers_table, (zend_long)(zend_uintptr_t)zend_opcode_handlers[i], &tmp);
63233 zv = zend_hash_index_find(zend_handlers_table, (zend_long)(zend_uintptr_t)op->handler);
63235 op->handler = (const void *)(zend_uintptr_t)Z_LVAL_P(zv);
63240 op->handler = zend_opcode_handlers[(zend_uintptr_t)op->handler];
63253 zv = zend_hash_index_find(zend_handlers_table, (zend_long)(zend_uintptr_t)op->handler);
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_oprofile.c30 op_write_native_code(op_agent, name, (uint64_t)(zend_uintptr_t)start, start, size); in zend_jit_oprofile_register()
H A Dzend_jit_disasm_x86.c224 void *a = (void*)(zend_uintptr_t)(addr); in zend_jit_disasm_resolver()
/PHP-8.0/win32/
H A Dselect.c65 handles[n_handles] = (HANDLE)(zend_uintptr_t)_get_osfhandle(i); in php_select()
/PHP-8.0/ext/opcache/
H A Dzend_persist.c131 ZEND_ASSERT(((zend_uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ in zend_hash_persist()
150 ZEND_ASSERT(((zend_uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ in zend_hash_persist()
1176 ZEND_ASSERT(((zend_uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ in zend_accel_script_persist()
1195 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 63L) & ~63L); in zend_accel_script_persist()
1197 ZEND_ASSERT(((zend_uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ in zend_accel_script_persist()
H A Dzend_accelerator_util_funcs.c30 …et(old, new) zend_hash_index_add_new_ptr(&ZCG(bind_hash), (zend_ulong)(zend_uintptr_t)(old), (new))
31 # define accel_xlat_get(old) zend_hash_index_find_ptr(&ZCG(bind_hash), (zend_ulong)(zend_uintptr_t
768 ZCG(arena_mem) = (void*)(((zend_uintptr_t)ZCG(arena_mem) + 63L) & ~63L); in zend_accel_load_script()
H A Dzend_shared_alloc.c356 ZEND_ASSERT(((zend_uintptr_t)retval & 0x7) == 0); /* should be 8 byte aligned */ in zend_shared_alloc()
H A Dzend_file_cache.c1006 buf = (void*)(((zend_uintptr_t)mem + 63L) & ~63L);
1719 mem = (void*)(((zend_uintptr_t)mem + 63L) & ~63L);
1780 buf = (void*)(((zend_uintptr_t)buf + 63L) & ~63L);
H A DZendAccelerator.c1379 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 63L) & ~63L); in store_script_in_file_cache()
1383 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 7L) & ~7L); in store_script_in_file_cache()
1497 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 63L) & ~63L); in cache_script_in_shared_memory()
4246 ZCG(mem) = (void*)(((zend_uintptr_t)ZCG(mem) + 63L) & ~63L);
/PHP-8.0/main/streams/
H A Dplain_wrapper.c253 zend_uintptr_t handle = _get_osfhandle(self->fd); in detect_is_seekable()
255 if (handle != (zend_uintptr_t)INVALID_HANDLE_VALUE) { in detect_is_seekable()
703 if ((zend_uintptr_t) ptrparam == PHP_STREAM_LOCK_SUPPORTED) { in php_stdiop_set_option()
/PHP-8.0/ext/standard/
H A Dvar_unserializer.re568 (*var_hash)->ref_props, (zend_uintptr_t) old_data);
620 (*var_hash)->ref_props, (zend_uintptr_t) data, info);
821 info = zend_hash_index_find_ptr((*var_hash)->ref_props, (zend_uintptr_t) rval_ref);
H A Dvar.c656 key = (zend_ulong) (zend_uintptr_t) Z_COUNTED_P(var); in php_add_var_hash()
1051 (zend_ulong) (zend_uintptr_t) Z_COUNTED_P(struc)); in php_var_serialize_intern()
/PHP-8.0/
H A D.gdbinit475 set $initial_offset = ((uint32_t)(zend_uintptr_t)(&((zend_object*)0)->properties_table[(0)]))
/PHP-8.0/main/
H A Dmain.c1608 unsigned long leak_count = (zend_uintptr_t) data; in php_message_handler_for_zend()
/PHP-8.0/ext/pgsql/
H A Dpgsql.c678 …PQsetNoticeProcessor(pgsql, _php_pgsql_notice_handler, (void*)(zend_uintptr_t)Z_RES_HANDLE_P(retur… in php_pgsql_do_connect()

Completed in 290 milliseconds