Home
last modified time | relevance | path

Searched refs:rc (Results 126 – 150 of 209) sorted by relevance

123456789

/PHP-5.5/Zend/
H A Dzend.h341 #define Z_SET_REFCOUNT_PP(ppz, rc) Z_SET_REFCOUNT_P(*(ppz), rc) argument
350 #define Z_SET_REFCOUNT_P(pz, rc) zval_set_refcount_p(pz, rc) argument
359 #define Z_SET_REFCOUNT(z, rc) Z_SET_REFCOUNT_P(&(z), rc) argument
400 static zend_always_inline zend_uint zval_set_refcount_p(zval* pz, zend_uint rc) { in zval_set_refcount_p() argument
401 return pz->refcount__gc = rc; in zval_set_refcount_p()
/PHP-5.5/win32/build/
H A Dtemplate.dsp28 RSC=rc.exe
58 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
H A DMakefile28 MCFILE=$(BUILD_DIR)\wsyslog.rc
85 $(PHPDLL_RES): win32\build\template.rc
89 win32\build\template.rc
131 …_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\*.rc $(BUILD_DIR)\*.manif…
199 @copy win32\build\template.rc $(BUILD_DIR_DEV)\build\ /y >nul
H A DMakefile.phpize22 …_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\*.rc $(BUILD_DIR)\*.dbg $…
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getMethods_001.phpt33 $rc = new ReflectionClass($class);
34 var_dump($rc->getMethods());
H A DReflectionClass_getDefaultProperties_001.phpt68 $rc = new ReflectionClass($class);
70 print_r($rc->getStaticProperties());
72 print_r($rc->getDefaultProperties());
H A DReflectionClass_getInterfaces_001.phpt37 $rc = new ReflectionClass($class);
38 $interfaces = $rc->getInterfaces();
H A DReflectionClass_toString_001.phpt8 $rc = new ReflectionClass("ReflectionClass");
9 echo $rc;
H A DReflectionClass_getProperty_003.phpt41 $rc = new ReflectionClass("C");
44 global $rc, $myC;
47 $rp = $rc->getProperty($name);
H A DReflectionClass_getProperty_004.phpt41 $rc = new ReflectionClass("C");
44 global $rc, $myC;
47 $rp = $rc->getProperty($name);
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_priv.h31 #define Z_SET_REFCOUNT_P(pz, rc) ((pz)->refcount = rc) argument
H A Dmysqlnd_result.c53 enum_func_status rc = result->m.row_decoder( in MYSQLND_METHOD() local
60 if (rc != PASS) { in MYSQLND_METHOD()
659 enum_func_status rc = result->m.row_decoder(result->unbuf->last_row_buffer, in mysqlnd_fetch_row_unbuffered_c() local
665 if (PASS != rc) { in mysqlnd_fetch_row_unbuffered_c()
774 enum_func_status rc = result->m.row_decoder(result->unbuf->last_row_buffer, in mysqlnd_fetch_row_unbuffered() local
780 if (PASS != rc) { in mysqlnd_fetch_row_unbuffered()
932 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], in mysqlnd_fetch_row_buffered_c() local
938 if (rc != PASS) { in mysqlnd_fetch_row_buffered_c()
1004 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], in mysqlnd_fetch_row_buffered() local
1010 if (rc != PASS) { in mysqlnd_fetch_row_buffered()
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_error1.phpt35 var_dump($rc = assert('aa=sd+as+safsafasfaçsafçsafç'));
/PHP-5.5/sapi/embed/
H A Dphp5embed.dsp29 RSC=rc.exe
85 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/spl/
H A Dspl_dllist.c44 #define SPL_LLIST_DELREF(elem) if(!--(elem)->rc) { \
48 #define SPL_LLIST_CHECK_DELREF(elem) if((elem) && !--(elem)->rc) { \
52 #define SPL_LLIST_ADDREF(elem) (elem)->rc++
53 #define SPL_LLIST_CHECK_ADDREF(elem) if(elem) (elem)->rc++
67 int rc; member
191 elem->rc = 1; in spl_ptr_llist_unshift()
215 elem->rc = 1; in spl_ptr_llist_push()
1275 elem->rc = 1; in SPL_METHOD()
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_exec.c6489 if (rc != PCRE_ERROR_JIT_BADOPTION) return rc; in pcre_exec()
6860 rc = MATCH_NOMATCH; in pcre_exec()
6943 switch(rc) in pcre_exec()
6986 rc = MATCH_NOMATCH; in pcre_exec()
6998 rc = MATCH_NOMATCH; in pcre_exec()
7057 if (rc == MATCH_MATCH || rc == MATCH_ACCEPT) in pcre_exec()
7116 return rc; in pcre_exec()
7130 if (rc != MATCH_NOMATCH && rc != PCRE_ERROR_PARTIAL) in pcre_exec()
7136 return rc; in pcre_exec()
7152 rc = PCRE_ERROR_PARTIAL; in pcre_exec()
[all …]
/PHP-5.5/ext/interbase/
H A Dinterbase.dsp30 RSC=rc.exe
94 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
129 SOURCE=.\interbase.rc
/PHP-5.5/sapi/isapi/stresstest/
H A Dstresstest.dsp29 RSC=rc.exe
89 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/mbstring/
H A Dphp_mbregex.c452 php_mb_regex_t *retval = NULL, **rc = NULL; in php_mbregex_compile_pattern() local
456 found = zend_hash_find(&MBREX(ht_rc), (char *)pattern, patlen+1, (void **) &rc); in php_mbregex_compile_pattern()
457 …if (found == FAILURE || (*rc)->options != options || (*rc)->enc != enc || (*rc)->syntax != syntax)… in php_mbregex_compile_pattern()
466 retval = *rc; in php_mbregex_compile_pattern()
/PHP-5.5/ext/shmop/
H A Dshmop.dsp30 RSC=rc.exe
92 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/sockets/
H A Dsockets.dsp30 RSC=rc.exe
94 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/openssl/
H A Dopenssl.dsp30 RSC=rc.exe
92 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/tidy/
H A Dtidy.dsp30 RSC=rc.exe
93 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/bz2/
H A Dbz2.dsp30 RSC=rc.exe
93 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/ctype/
H A Dctype.dsp30 RSC=rc.exe
92 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"

Completed in 63 milliseconds

123456789