Home
last modified time | relevance | path

Searched refs:old (Results 1 – 25 of 113) sorted by relevance

12345

/PHP-5.3/ext/pcntl/tests/
H A D003.phpt13 var_dump(count($old));
14 pcntl_sigprocmask(SIG_BLOCK, array(SIGINT), $old);
15 var_dump(count($old));
16 pcntl_sigprocmask(SIG_UNBLOCK, array(SIGINT), $old);
17 var_dump(count($old));
18 pcntl_sigprocmask(SIG_SETMASK, array(SIGINT), $old);
19 var_dump(count($old));
20 pcntl_sigprocmask(SIG_SETMASK, array(), $old);
21 var_dump(count($old));
22 pcntl_sigprocmask(SIG_SETMASK, array(), $old);
[all …]
/PHP-5.3/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 …]
/PHP-5.3/TSRM/
H A Dbuildconf12 mv aclocal.m4 aclocal.m4.old 2>/dev/null
14 if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then
16 mv aclocal.m4.old aclocal.m4
25 mv configure configure.old 2>/dev/null
27 if cmp configure.old configure > /dev/null 2>&1; then
29 mv configure.old configure
/PHP-5.3/Zend/
H A Dbuildconf12 mv aclocal.m4 aclocal.m4.old 2>/dev/null
14 if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then
16 mv aclocal.m4.old aclocal.m4
25 mv configure configure.old 2>/dev/null
27 if cmp configure.old configure > /dev/null 2>&1; then
29 mv configure.old configure
H A DREADME.ZEND_VM12 Most parts of the old zend_execute.c go into zend_vm_def.h. Here you can
28 same as in old zend_execute.c, but now it uses macros to access opcode operands
31 You can see the conformity of new macros to old code in the following list:
97 exclude old executor together with specialized one using --without-old-executor.
105 is the specialized version and the other is the old one non-specialized with
107 can switch to the old executor at runtime by calling zend_vm_use_old_executor().
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug31695.phpt37 $old = $client->__setLocation("test://3");
38 echo "$old\n";
41 $client->__setLocation($old);
43 $old = $client->__setLocation();
45 $client->__setLocation($old);
/PHP-5.3/ext/standard/
H A Dhtml.h42 PHPAPI char *php_escape_html_entities(unsigned char *old, int oldlen, int *newlen, int all, int quo…
43 PHPAPI char *php_escape_html_entities_ex(unsigned char *old, int oldlen, int *newlen, int all, int …
44 PHPAPI char *php_unescape_html_entities(unsigned char *old, int oldlen, int *newlen, int all, int q…
/PHP-5.3/Zend/tests/
H A Dbug32322.phpt25 echo "Using old class " . self::$instance -> myname . "\n";
37 echo "Using old class " . $instance2 -> myname . "\n";
69 Using old class Singleton1
72 Using old class Singleton1
75 Using old class Singleton2
78 Using old class Singleton2
H A Dbug38942.phpt2 Bug #38942 (Double old-style-ctor inheritance)
H A Ddynamic_call_001.phpt2 Testing dynamic call to constructor (old-style)
H A Dbug52051.phpt2 Bug #52051 (handling of case sensitivity of old-style constructors changed in 5.3+)
/PHP-5.3/ext/fileinfo/libmagic/
H A Dcompress.c320 uncompressgzipped(struct magic_set *ms, const unsigned char *old, in uncompressgzipped() argument
323 unsigned char flg = old[3]; in uncompressgzipped()
331 data_start += 2 + old[data_start] + old[data_start + 1] * 256; in uncompressgzipped()
334 while(data_start < n && old[data_start]) in uncompressgzipped()
339 while(data_start < n && old[data_start]) in uncompressgzipped()
351 z.next_in = (Bytef *)strchr((const char *)old + data_start, in uncompressgzipped()
352 old[data_start]); in uncompressgzipped()
385 const unsigned char *old, unsigned char **newch, size_t n) in uncompressbuf() argument
394 return uncompressgzipped(ms, old, newch, n); in uncompressbuf()
447 if (swrite(fdin[1], old, n) != (ssize_t)n) { in uncompressbuf()
/PHP-5.3/tests/lang/
H A Dbug21961.phpt54 $x->getdrunk('The old Tavern');
58 string(14) "The old Tavern"
/PHP-5.3/ext/reflection/tests/
H A DReflectionMethod_constructor_basic.phpt33 echo "\nInherited old-style constructor:\n";
82 echo "\nRedefined old-style constructor:\n";
98 Inherited old-style constructor:
116 Redefined old-style constructor:
H A Dbug38942.phpt2 Bug #38942 (Double old-style-ctor inheritance)
/PHP-5.3/ext/soap/
H A Dphp_xml.c95 zend_bool old; in soap_xmlParseFile() local
103 old = php_libxml_disable_entity_loader(1 TSRMLS_CC); in soap_xmlParseFile()
105 php_libxml_disable_entity_loader(old TSRMLS_CC); in soap_xmlParseFile()
143 zend_bool old; in soap_xmlParseMemory() local
153 old = php_libxml_disable_entity_loader(1 TSRMLS_CC); in soap_xmlParseMemory()
155 php_libxml_disable_entity_loader(old TSRMLS_CC); in soap_xmlParseMemory()
/PHP-5.3/ext/sockets/tests/
H A Dbug46360.phpt9 die('skip old php, not eligible');
/PHP-5.3/ext/standard/tests/file/
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.3/tests/classes/
H A Dfinal_ctor3.phpt2 Ensure implicit final inherited old-style constructor cannot be overridden.
H A Dfinal_ctor2.phpt2 ZE2 cannot override final old style ctor
/PHP-5.3/ext/openssl/tests/
H A Dopenssl_encrypt_crash.phpt2 openssl_encrypt() crash with old OpenSSL
/PHP-5.3/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.3/ext/dom/tests/
H A DDOMNode_replaceChild_basic.phpt19 echo "New child replaces old child:\n" . $document->saveXML();
34 New child replaces old child:
/PHP-5.3/ext/mysqli/tests/
H A Dclean_table.inc10 …printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link…
/PHP-5.3/ext/pgsql/tests/
H A D98old_api.phpt2 PostgreSQL old api

Completed in 72 milliseconds

12345