Searched refs:is_ref (Results 1 - 10 of 10) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_variables.c | 195 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 D | zend.h | 808 int is_ref, refcount; \ 811 is_ref = Z_ISREF_PP(ppzv_dest); \ 818 Z_SET_ISREF_TO_PP(ppzv_dest, is_ref); \
|
| H A D | zend_API.c | 2589 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 D | zend_compile.h | 517 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 D | zend_execute_API.c | 484 zend_uchar is_ref; local 492 is_ref = Z_ISREF_P(p); 562 Z_SET_ISREF_TO_P(p, is_ref);
|
| H A D | zend_compile.c | 5717 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 D | zend_API.h | 512 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 D | php_zip.h | 42 # define Z_UNSET_ISREF_P(pz) pz->is_ref = 0
|
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 3461 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 D | ZendAccelerator.h | 124 #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