Home
last modified time | relevance | path

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

1234567

/PHP-8.2/ext/pcntl/tests/
H A D003.phpt27 var_dump(array_map(map_signo_to_name(...), $old));
28 pcntl_sigprocmask(SIG_BLOCK, [SIGINT], $old);
29 var_dump(array_map(map_signo_to_name(...), $old));
30 pcntl_sigprocmask(SIG_UNBLOCK, [SIGINT], $old);
31 var_dump(array_map(map_signo_to_name(...), $old));
32 pcntl_sigprocmask(SIG_SETMASK, [SIGINT], $old);
33 var_dump(array_map(map_signo_to_name(...), $old));
34 pcntl_sigprocmask(SIG_SETMASK, [], $old);
35 var_dump(array_map(map_signo_to_name(...), $old));
38 pcntl_sigprocmask(SIG_SETMASK, $prev, $old);
[all …]
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_atomic.h37 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument
42 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set()
63 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument
68 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); in atomic_cmp_set()
98 static inline atomic_uint_t atomic_cas_64(atomic_t *lock, atomic_uint_t old, atomic_uint_t new) /* … in atomic_cas_64() argument
100 __asm__ __volatile__("casx [%2], %3, %0 " : "=&r"(new) : "0"(new), "r"(lock), "r"(old): "memory"); in atomic_cas_64()
106 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /*… in atomic_cmp_set() argument
108 return (atomic_cas_64(lock, old, set)==old); in atomic_cmp_set()
115 static inline atomic_uint_t atomic_cas_32(atomic_t *lock, atomic_uint_t old, atomic_uint_t new) /* … in atomic_cas_32() argument
117 __asm__ __volatile__("cas [%2], %3, %0 " : "=&r"(new) : "0"(new), "r"(lock), "r"(old): "memory"); in atomic_cas_32()
[all …]
/PHP-8.2/ext/soap/tests/bugs/
H A Dbug31695.phpt39 $old = $client->__setLocation("test://3");
40 echo "$old\n";
43 $client->__setLocation($old);
45 $old = $client->__setLocation();
47 $client->__setLocation($old);
/PHP-8.2/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
/PHP-8.2/scripts/dev/
H A Dbless_tests.php108 $result[] = $elem->old;
140 public $old; variable in DiffElem
144 public function __construct(int $type, $old, $new) { argument
146 $this->old = $old;
167 * @param array $old Original array
172 public function diff(array $old, array $new) { argument
173 list($trace, $x, $y) = $this->calculateTrace($old, $new);
174 return $this->extractDiff($trace, $x, $y, $old, $new);
/PHP-8.2/ext/reflection/tests/
H A Dbug79487.phpt14 public static $a = 'A old';
17 public static $b = 'B old';
31 string(5) "B old"
/PHP-8.2/docs/
H A Doutput-api.md1 # API adjustment to the old output control code
23 // not possible with old API
38 // not possible with old API
46 // not possible with old API
82 // not possible with old API, unless hardcoding into output.c
86 // not possible with old API
90 // not possible with old API
94 //not possible with old API
98 // not possible with old API
102 // not possible with old API
[all …]
/PHP-8.2/ext/session/tests/
H A Dbug79413.phpt8 $old = session_id();
10 var_dump($new !== $old);
/PHP-8.2/ext/standard/tests/general_functions/
H A Dbug79254.phpt6 $old = getenv();
12 var_dump(array_diff($new, $old));
/PHP-8.2/ext/fileinfo/libmagic/
H A Dcompress.c547 unsigned char flg = old[3]; in uncompressgzipped()
553 data_start += 2 + old[data_start] + old[data_start + 1] * 256; in uncompressgzipped()
556 while(data_start < *n && old[data_start]) in uncompressgzipped()
561 while(data_start < *n && old[data_start]) in uncompressgzipped()
572 old += data_start; in uncompressgzipped()
588 z.next_in = CCAST(Bytef *, old); in uncompresszlib()
680 xz.next_in = CCAST(const uint8_t *, old); in uncompressxzlib()
800 writechild(int fd, const void *old, size_t n) in writechild() argument
815 if (swrite(fd, old, n) != CAST(ssize_t, n)) { in writechild()
900 return uncompressbzlib(old, newch, bytes_max, n); in uncompressbuf()
[all …]
/PHP-8.2/ext/xml/tests/
H A DXML_OPTION_PARSE_HUGE.phpt22 echo "old option value: "; var_dump(xml_parser_get_option($parser, XML_OPTION_PARSE_HUGE));
64 old option value: bool(false)
69 old option value: bool(false)
78 old option value: bool(false)
83 old option value: bool(false)
/PHP-8.2/ext/standard/
H A Dhtml.h47 PHPAPI zend_string *php_escape_html_entities(const unsigned char *old, size_t oldlen, int all, int …
48 PHPAPI zend_string *php_escape_html_entities_ex(const unsigned char *old, size_t oldlen, int all, i…
H A Dhtml.c820 const char *old, in traverse_for_entities() argument
833 lim = old + oldlen; /* terminator address */ in traverse_for_entities()
836 for (p = old, q = ZSTR_VAL(ret); p < lim;) { in traverse_for_entities()
1028 const unsigned char *old, in find_entity_for_char() argument
1182 mbsequence = &old[cursor_before]; in php_escape_html_entities_ex()
1205 &rep_len, old, oldlen, &cursor); in php_escape_html_entities_ex()
1263 if (old[cursor] == '#') { /* numeric entity */ in php_escape_html_entities_ex()
1266 char *pos = (char*)&old[cursor+1]; in php_escape_html_entities_ex()
1274 ent_len = pos - (char*)&old[cursor]; in php_escape_html_entities_ex()
1277 const char *start = (const char *) &old[cursor], in php_escape_html_entities_ex()
[all …]
/PHP-8.2/tests/lang/
H A Dbug21961.phpt52 $x->getdrunk('The old Tavern');
56 string(14) "The old Tavern"
/PHP-8.2/ext/standard/tests/serialize/
H A D005.phpt6 // This test verifies that old and new style (un)serializing do not interfere.
123 // Now we have an autoloader, that will be called before the old style header.
124 // If the old style handler also fails to register the class then the object
131 … __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is nec…
156 … __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is nec…
165 … __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is nec…
H A Dbug49649.phpt15 * public $notThere = 'old';
46 string(3) "old"
H A Dbug49649_1.phpt15 * public $notThere = 'old';
46 string(3) "old"
H A Dbug49649_2.phpt15 * public $notThere = 'old';
46 string(3) "old"
H A Dbug36424.phpt46 … __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is nec…
48 … __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is nec…
50 … __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is nec…
/PHP-8.2/ext/soap/
H A Dphp_xml.c92 bool old; in soap_xmlParseFile() local
102 old = php_libxml_disable_entity_loader(1); in soap_xmlParseFile()
104 php_libxml_disable_entity_loader(old); in soap_xmlParseFile()
141 bool old; in soap_xmlParseMemory() local
150 old = php_libxml_disable_entity_loader(1); in soap_xmlParseMemory()
152 php_libxml_disable_entity_loader(old); in soap_xmlParseMemory()
/PHP-8.2/.github/workflows/
H A Dclose-needs-feedback.yml1 name: Close old issues that need feedback
18 - name: Close old issues that need feedback
/PHP-8.2/ext/mysqli/tests/
H A Dtable.inc11 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
16 printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
/PHP-8.2/ext/standard/tests/file/
H A Dfileinode_variation.phpt57 fclose( fopen("$file_path/old.txt", "w") );
58 print( fileinode("$file_path/old.txt") )."\n";
61 rename("$file_path/old.txt", "$file_path/new.txt");
/PHP-8.2/ext/opcache/
H A Dshared_alloc_win32.c186 DWORD old; in zend_shared_alloc_reattach() local
188 if (!VirtualProtect(mapping_base, requested_size, PAGE_READWRITE, &old)) { in zend_shared_alloc_reattach()
313 DWORD old; in create_segments() local
315 if (!VirtualProtect(mapping_base, requested_size, PAGE_READWRITE, &old)) { in create_segments()
/PHP-8.2/ext/openssl/tests/
H A Dopenssl_encrypt_crash.phpt2 openssl_encrypt() crash with old OpenSSL

Completed in 49 milliseconds

1234567