Home
last modified time | relevance | path

Searched refs:pz (Results 1 – 9 of 9) sorted by path

/PHP-5.5/Zend/
H A Dzend.h349 #define Z_REFCOUNT_P(pz) zval_refcount_p(pz) argument
350 #define Z_SET_REFCOUNT_P(pz, rc) zval_set_refcount_p(pz, rc) argument
351 #define Z_ADDREF_P(pz) zval_addref_p(pz) argument
352 #define Z_DELREF_P(pz) zval_delref_p(pz) argument
353 #define Z_ISREF_P(pz) zval_isref_p(pz) argument
354 #define Z_SET_ISREF_P(pz) zval_set_isref_p(pz) argument
355 #define Z_UNSET_ISREF_P(pz) zval_unset_isref_p(pz) argument
356 #define Z_SET_ISREF_TO_P(pz, isref) zval_set_isref_to_p(pz, isref) argument
397 return pz->refcount__gc; in zval_refcount_p()
405 return ++pz->refcount__gc; in zval_addref_p()
[all …]
H A Dzend_execute.c1450 static int zend_check_symbol(zval **pz TSRMLS_DC) in zend_check_symbol()
1452 if (Z_TYPE_PP(pz) > 9) { in zend_check_symbol()
1453 fprintf(stderr, "Warning! %x has invalid type!\n", *pz); in zend_check_symbol()
1458 } else if (Z_TYPE_PP(pz) == IS_ARRAY) { in zend_check_symbol()
1459 zend_hash_apply(Z_ARRVAL_PP(pz), (apply_func_t) zend_check_symbol TSRMLS_CC); in zend_check_symbol()
1460 } else if (Z_TYPE_PP(pz) == IS_OBJECT) { in zend_check_symbol()
1463 zend_hash_apply(Z_OBJPROP_PP(pz), (apply_func_t) zend_check_symbol TSRMLS_CC); in zend_check_symbol()
H A Dzend_gc.c181 newRoot->u.pz = zv; in gc_zval_possible_root()
288 pz = table[i]; in zval_scan_black()
314 if (Z_TYPE_P(pz) != IS_ARRAY || Z_ARRVAL_P(pz) != &EG(symbol_table)) { in zval_scan_black()
342 pz = table[i]; in zobj_scan_black()
357 if (Z_TYPE_P(pz) != IS_ARRAY || Z_ARRVAL_P(pz) != &EG(symbol_table)) { in zobj_scan_black()
395 pz = table[i]; in zval_mark_grey()
421 if (Z_TYPE_P(pz) != IS_ARRAY || Z_ARRVAL_P(pz) != &EG(symbol_table)) { in zval_mark_grey()
450 pz = table[i]; in zobj_mark_grey()
591 pz = table[i]; in zobj_scan()
666 pz = zv; in zval_collect_white()
[all …]
H A Dzend_gc.h86 zval *pz; member
/PHP-5.5/ext/mysqli/
H A Dmysqli.c314 #define Z_ADDREF_P(pz) (++(pz)->refcount) argument
315 #define Z_REFCOUNT_P(pz) ((pz)->refcount) argument
316 #define Z_SET_REFCOUNT_P(pz, rc) ((pz)->refcount = rc) argument
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_priv.h28 #define Z_ADDREF_P(pz) (++(pz)->refcount) argument
29 #define Z_DELREF_P(pz) (--(pz)->refcount) argument
30 #define Z_REFCOUNT_P(pz) ((pz)->refcount) argument
31 #define Z_SET_REFCOUNT_P(pz, rc) ((pz)->refcount = rc) argument
/PHP-5.5/ext/opcache/
H A DZendAccelerator.h130 #define Z_REFCOUNT_P(pz) (pz)->refcount argument
132 #define Z_ADDREF_P(pz) ++((pz)->refcount) argument
133 #define Z_DELREF_P(pz) --((pz)->refcount) argument
134 #define Z_ISREF_P(pz) (pz)->is_ref argument
138 #define PZ_REFCOUNT_P(pz) (pz)->refcount argument
140 #define PZ_ADDREF_P(pz) ++((pz)->refcount) argument
141 #define PZ_DELREF_P(pz) --((pz)->refcount) argument
142 #define PZ_ISREF_P(pz) (pz)->is_ref argument
147 #define PZ_REFCOUNT_P(pz) (pz)->refcount__gc argument
149 #define PZ_ADDREF_P(pz) ++((pz)->refcount__gc) argument
[all …]
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c21303 sqlite3DbFree(db, *pz);
21304 *pz = z;
23068 c = *((*pz)++);
23071 while( (*(*pz) & 0xc0)==0x80 ){
133768 if( z && *pz ){
133774 sqlite3_free(*pz);
133775 *pz = z;
141383 char *z = *pz;
141390 *pz = z;
147906 const char *z = *pz;
[all …]
/PHP-5.5/ext/zip/
H A Dphp_zip.h41 # define Z_SET_REFCOUNT_P(pz, rc) pz->refcount = rc argument
42 # define Z_UNSET_ISREF_P(pz) pz->is_ref = 0 argument

Completed in 401 milliseconds