Home
last modified time | relevance | path

Searched refs:old (Results 1 – 25 of 125) sorted by last modified time

12345

/PHP-5.5/win32/
H A Dinstall.txt141 to backup these files as you might break the entire system. The old
803 way to try this in the old PHP 3.x way with getenv() or a similar way
/PHP-5.5/tests/lang/
H A Dbug21961.phpt54 $x->getdrunk('The old Tavern');
58 string(14) "The old Tavern"
/PHP-5.5/tests/classes/
H A Dfinal_ctor2.phpt2 ZE2 cannot override final old style ctor
H A Dfinal_ctor3.phpt2 Ensure implicit final inherited old-style constructor cannot be overridden.
H A Dinheritance_005.phpt2 Check for inherited old-style constructor.
H A Dinheritance_007.phpt2 Ensure inherited old-style constructor doesn't block other methods
/PHP-5.5/sapi/litespeed/
H A DREADME44 need to overwrite the old executable with this one and you are all
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_atomic.h43 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument
48 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set()
69 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument
74 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set()
104 static inline int atomic_cas_64(atomic_t *lock, atomic_uint_t old, atomic_uint_t new) /* {{{ */ in atomic_cas_64() argument
106 __asm__ __volatile__("casx [%2], %3, %0 " : "=&r"(new) : "0"(new), "r"(lock), "r"(old): "memory"); in atomic_cas_64()
112 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument
114 return (atomic_cas_64(lock, old, set)==old); in atomic_cmp_set()
121 static inline int atomic_cas_32(atomic_t *lock, atomic_uint_t old, atomic_uint_t new) /* {{{ */ in atomic_cas_32() argument
123 __asm__ __volatile__("cas [%2], %3, %0 " : "=&r"(new) : "0"(new), "r"(lock), "r"(old): "memory"); in atomic_cas_32()
[all …]
H A Dfpm_main.c1223 char old; local
1226 old = path_info[0];
1237 path_info[0] = old;
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c1268 char old; local
1271 old = path_info[0];
1282 path_info[0] = old;
/PHP-5.5/
H A Dphp.ini-development1276 ; http://php.net/oci8.old-oci-close-semantics
1612 ; Compatibility mode with old versions of PHP 3.0.
H A Dphp.ini-production1276 ; http://php.net/oci8.old-oci-close-semantics
1612 ; Compatibility mode with old versions of PHP 3.0.
/PHP-5.5/ext/xsl/tests/
H A Dxslt010.phpt8 if (LIBXSLT_VERSION < 10117) die('skip too old libxsl');
H A Dxsltprocessor_registerPHPFunctions-string-multiple.phpt6 list - it does not replace the old function.
/PHP-5.5/ext/xml/tests/
H A Dxml_set_start_namespace_decl_handler_basic.phpt20 <aw1:para>Any old text.</aw1:para>
H A Dbug26614.phpt18 see and what good old Expat reported just fine ...
H A Dbug26614_libxml.phpt18 see and what good old Expat reported just fine ...
/PHP-5.5/ext/tidy/tests/
H A D024.phpt6 if (strtotime(tidy_get_release()) < strtotime('20 january 2007')) die ('skip old libtidy');
/PHP-5.5/ext/standard/tests/serialize/
H A D005.phpt8 // This test verifies that old and new style (un)serializing do not interfere.
126 // Now we have __autoload(), that will be called before the old style header.
127 // If the old style handler also fails to register the class then the object
/PHP-5.5/ext/standard/tests/file/
H A Drename_basic.phpt27 // checking statistics of old and renamed file - both should be same except ctime
H A Dfileinode_variation.phpt61 fclose( fopen("$file_path/old.txt", "w") );
62 print( fileinode("$file_path/old.txt") )."\n";
65 rename("$file_path/old.txt", "$file_path/new.txt");
/PHP-5.5/ext/standard/
H A Dstring.c135 static char *php_bin2hex(const unsigned char *old, const size_t oldlen, size_t *newlen) in php_bin2hex() argument
146 result[j++] = hexconvtab[old[i] >> 4]; in php_bin2hex()
147 result[j++] = hexconvtab[old[i] & 15]; in php_bin2hex()
160 static char *php_hex2bin(const unsigned char *old, const size_t oldlen, size_t *newlen) in php_hex2bin() argument
166 char c = old[j++]; in php_hex2bin()
177 c = old[j++]; in php_hex2bin()
2614 char *str, *old; local
2621 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &old, &old_len) == FAILURE) {
2625 old_end = old + old_len;
2627 if (old == old_end) {
[all …]
H A Dhtml.c925 const char *old, in traverse_for_entities() argument
939 lim = old + oldlen; /* terminator address */ in traverse_for_entities()
942 for (p = old, q = ret; p < lim;) { in traverse_for_entities()
1104 ret = estrndup((char*)old, oldlen); in php_unescape_html_entities()
1138 unsigned char *old, in find_entity_for_char() argument
1298 mbsequence = &old[cursor_before]; in php_escape_html_entities_ex()
1321 &rep_len, old, oldlen, &cursor); in php_escape_html_entities_ex()
1379 if (old[cursor] == '#') { /* numeric entity */ in php_escape_html_entities_ex()
1382 char *pos = (char*)&old[cursor+1]; in php_escape_html_entities_ex()
1390 ent_len = pos - (char*)&old[cursor]; in php_escape_html_entities_ex()
[all …]
H A Dhtml.h57 PHPAPI char *php_escape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all, i…
58 PHPAPI char *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, size_t *newlen, int all…
59 PHPAPI char *php_unescape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all,…
H A Dconfig.m4398 dnl These are old deprecated functions

Completed in 112 milliseconds

12345