Lines Matching refs:zend_uintptr_t
123 if ((zend_uintptr_t)should_free.var & 1L) { \
124 zval_dtor((zval*)((zend_uintptr_t)should_free.var & ~1L)); \
131 if (should_free.var != NULL && (((zend_uintptr_t)should_free.var & 1L) == 0)) { \
140 #define TMP_FREE(z) (zval*)(((zend_uintptr_t)(z)) | 1L)
142 #define IS_TMP_FREE(should_free) ((zend_uintptr_t)should_free.var & 1L)
159 #define IS_CTOR_CALL(ce) (((zend_uintptr_t)(ce)) & CTOR_CALL_BIT)
160 #define IS_CTOR_USED(ce) (((zend_uintptr_t)(ce)) & CTOR_USED_BIT)
163 ((zend_class_entry*)(((zend_uintptr_t)(ce)) | CTOR_CALL_BIT | ((used) ? CTOR_USED_BIT : 0)))
165 ((zend_class_entry*)(((zend_uintptr_t)(ce)) & ~(CTOR_CALL_BIT|CTOR_USED_BIT)))
1660 *EX(prev_execute_data)->function_state.arguments = (void*)(zend_uintptr_t)args_count; in i_create_execute_data_from_op_array()
1741 *(EG(argument_stack)->top) = (void*)(zend_uintptr_t)count; in zend_vm_stack_push_args_with_copy()
1764 *(EG(argument_stack)->top) = (void*)(zend_uintptr_t)count; in zend_vm_stack_push_args()