Searched refs:is_ref (Results 1 - 10 of 10) sorted by relevance

/PHP_TRUNK/Zend/
H A Dzend_variables.c195 zend_bool is_ref; local
199 is_ref = Z_TYPE_PP(p) & IS_LEXICAL_REF;
205 if (is_ref) {
214 if (is_ref) {
H A Dzend.h808 int is_ref, refcount; \
811 is_ref = Z_ISREF_PP(ppzv_dest); \
818 Z_SET_ISREF_TO_PP(ppzv_dest, is_ref); \
H A Dzend_API.c2589 ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref, int num_symbol_tables, ...) /* {{{ */ argument
2596 Z_SET_ISREF_TO_P(symbol, is_ref);
H A Dzend_compile.h517 void zend_do_fetch_lexical_variable(znode *varname, zend_bool is_ref TSRMLS_DC);
583 void zend_do_init_array(znode *result, const znode *expr, const znode *offset, zend_bool is_ref TSRMLS_DC);
584 void zend_do_add_array_element(znode *result, const znode *expr, const znode *offset, zend_bool is_ref TSRMLS_DC);
H A Dzend_execute_API.c484 zend_uchar is_ref; local
492 is_ref = Z_ISREF_P(p);
562 Z_SET_ISREF_TO_P(p, is_ref);
H A Dzend_compile.c5717 void zend_do_init_array(znode *result, const znode *expr, const znode *offset, zend_bool is_ref TSRMLS_DC) /* {{{ */
5748 opline->extended_value = is_ref;
5752 void zend_do_add_array_element(znode *result, const znode *expr, const znode *offset, zend_bool is_ref TSRMLS_DC) /* {{{ */
5776 opline->extended_value = is_ref;
6013 void zend_do_fetch_lexical_variable(znode *varname, zend_bool is_ref TSRMLS_DC) /* {{{ */
6025 Z_TYPE(value.u.constant) |= is_ref ? IS_LEXICAL_REF : IS_LEXICAL_VAR;
6029 zend_do_fetch_static_variable(varname, &value, is_ref ? ZEND_FETCH_STATIC : ZEND_FETCH_LEXICAL TSRMLS_CC);
H A Dzend_API.h512 ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref, int num_symbol_tables, ...);
598 zend_uchar is_ref = Z_ISREF_P(z); \
610 Z_SET_ISREF_TO_P(z, is_ref); \
/PHP_TRUNK/ext/zip/
H A Dphp_zip.h42 # define Z_UNSET_ISREF_P(pz) pz->is_ref = 0
/PHP_TRUNK/ext/reflection/
H A Dphp_reflection.c3461 zend_uchar is_ref; local
3477 is_ref = Z_ISREF_PP(variable_ptr);
3482 Z_SET_ISREF_TO_PP(variable_ptr, is_ref);
/PHP_TRUNK/ext/opcache/
H A DZendAccelerator.h124 #define Z_ISREF_P(pz) (pz)->is_ref
127 #define Z_SET_ISREF_TO_P(pz, isref) (pz)->is_ref = (isref)
132 #define PZ_ISREF_P(pz) (pz)->is_ref
135 #define PZ_SET_ISREF_TO_P(pz, isref) (pz)->is_ref = (isref)

Completed in 44 milliseconds