Lines Matching refs:Ts

52 #define get_zval_ptr(op_type, node, Ts, should_free, type) _get_zval_ptr(op_type, node, Ts, should_…  argument
53 #define get_zval_ptr_ptr(op_type, node, Ts, should_free, type) _get_zval_ptr_ptr(op_type, node, Ts,… argument
54 #define get_obj_zval_ptr(op_type, node, Ts, should_free, type) _get_obj_zval_ptr(op_type, node, Ts,… argument
55 #define get_obj_zval_ptr_ptr(op_type, node, Ts, should_free, type) _get_obj_zval_ptr_ptr(op_type, n… argument
64 #define T(offset) (*(temp_variable *)((char *) Ts + offset))
175 static zend_always_inline zval *_get_zval_ptr_tmp(zend_uint var, const temp_variable *Ts, zend_free… in _get_zval_ptr_tmp() argument
180 static zend_always_inline zval *_get_zval_ptr_var(zend_uint var, const temp_variable *Ts, zend_free… in _get_zval_ptr_var() argument
346 static inline zval *_get_zval_ptr(int op_type, const znode_op *node, const temp_variable *Ts, zend_… in _get_zval_ptr() argument
359 return _get_zval_ptr_var(node->var, Ts, should_free TSRMLS_CC); in _get_zval_ptr()
374 static zend_always_inline zval **_get_zval_ptr_ptr_var(zend_uint var, const temp_variable *Ts, zend… in _get_zval_ptr_ptr_var() argument
447 static inline zval **_get_zval_ptr_ptr(int op_type, const znode_op *node, const temp_variable *Ts, … in _get_zval_ptr_ptr() argument
453 return _get_zval_ptr_ptr_var(node->var, Ts, should_free TSRMLS_CC); in _get_zval_ptr_ptr()
470 static inline zval **_get_obj_zval_ptr_ptr(int op_type, const znode_op *op, const temp_variable *Ts in _get_obj_zval_ptr_ptr() argument
482 return get_zval_ptr_ptr(op_type, op, Ts, should_free, type); in _get_obj_zval_ptr_ptr()
495 static inline zval *_get_obj_zval_ptr(int op_type, znode_op *op, const temp_variable *Ts, zend_free… in _get_obj_zval_ptr() argument
505 return get_zval_ptr(op_type, op, Ts, should_free, type); in _get_obj_zval_ptr()
656 …l *property_name, int value_type, znode_op *value_op, const temp_variable *Ts, int opcode, const z… in zend_assign_to_object() argument
660 zval *value = get_zval_ptr(value_type, value_op, Ts, &free_value, BP_VAR_R); in zend_assign_to_object()
1412 …nt nest_levels, int array_offset, const zend_op_array *op_array, const temp_variable *Ts TSRMLS_DC) in zend_brk_cont()
1479 …zval **return_value_ptr = &(*(temp_variable *)((char *) execute_data_ptr->Ts + execute_data_ptr->o… in execute_internal()
1531 ZEND_API zval *zend_get_zval_ptr(int op_type, const znode_op *node, const temp_variable *Ts, zend_f… in zend_get_zval_ptr() argument
1532 return get_zval_ptr(op_type, node, Ts, should_free, type); in zend_get_zval_ptr()
1535 ZEND_API zval **zend_get_zval_ptr_ptr(int op_type, const znode_op *node, const temp_variable *Ts, z… in zend_get_zval_ptr_ptr() argument
1536 return get_zval_ptr_ptr(op_type, node, Ts, should_free, type); in zend_get_zval_ptr_ptr()