/php-src/ext/pcntl/tests/ |
H A D | 003.phpt | 27 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-src/sapi/fpm/fpm/ |
H A D | fpm_atomic.h | 37 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-src/ext/bcmath/tests/number/operators/ |
H A D | compound_assignment.phpt | 17 echo 'old: ' . $num_old . "\n"; 29 echo 'old: ' . $num_old . "\n"; 41 echo 'old: ' . $num_old . "\n"; 53 echo 'old: ' . $num_old . "\n"; 65 echo 'old: ' . $num_old . "\n"; 85 old: 100 91 old: 100 97 old: 100 103 old: 100 109 old: 1000 [all …]
|
/php-src/ext/dom/tests/modern/html/interactions/ |
H A D | Document_body_setter.phpt | 19 echo "--- Replace old body with new body ---\n"; 24 echo "--- Replace old body with new body, while still having a reference to the old body ---\n"; 26 $old = $dom->body; 29 var_dump($old->nodeName); 42 --- Replace old body with new body --- 44 --- Replace old body with new body, while still having a reference to the old body ---
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug31695.phpt | 39 $old = $client->__setLocation("test://3"); 40 echo "$old\n"; 43 $client->__setLocation($old); 45 $old = $client->__setLocation(); 47 $client->__setLocation($old);
|
/php-src/Zend/tests/ |
H A D | bug32322.phpt | 25 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-src/scripts/dev/ |
H A D | bless_tests.php | 110 $result[] = $elem->old; 142 public $old; variable in DiffElem 146 public function __construct(int $type, $old, $new) { argument 148 $this->old = $old; 169 * @param array $old Original array 174 public function diff(array $old, array $new) { argument 175 list($trace, $x, $y) = $this->calculateTrace($old, $new); 176 return $this->extractDiff($trace, $x, $y, $old, $new);
|
/php-src/ext/reflection/tests/ |
H A D | bug79487.phpt | 14 public static $a = 'A old'; 17 public static $b = 'B old'; 31 string(5) "B old"
|
/php-src/docs-old/ |
H A D | output-api.md | 1 # 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-src/ext/session/tests/ |
H A D | bug79413.phpt | 8 $old = session_id(); 10 var_dump($new !== $old);
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Document_importLegacyNode.phpt | 8 $old = new DOMDocument; 9 $old->loadXML(<<<XML 20 $new->append($new->importLegacyNode($old->documentElement, true)); 22 unset($old);
|
/php-src/ext/standard/tests/general_functions/ |
H A D | bug79254.phpt | 6 $old = getenv(); 12 var_dump(array_diff($new, $old));
|
/php-src/ext/fileinfo/libmagic/ |
H A D | compress.c | 578 flg = old[3]; in uncompressgzipped() 583 data_start += 2 + old[data_start] + old[data_start + 1] * 256; in uncompressgzipped() 586 while(data_start < *n && old[data_start]) in uncompressgzipped() 591 while(data_start < *n && old[data_start]) in uncompressgzipped() 602 old += data_start; in uncompressgzipped() 616 z.next_in = CCAST(Bytef *, old); in uncompresszlib() 704 xz.next_in = CCAST(const uint8_t *, old); in uncompressxzlib() 748 in.src = CCAST(const void *, old); in uncompresszstd() 804 old += wr; in uncompresslzlib() 935 writechild(int fd, const void *old, size_t n) in writechild() argument [all …]
|
/php-src/ext/standard/ |
H A D | html.h | 47 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…
|
/php-src/ext/xml/tests/ |
H A D | XML_OPTION_PARSE_HUGE.phpt | 22 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-src/tests/lang/ |
H A D | bug21961.phpt | 52 $x->getdrunk('The old Tavern'); 56 string(14) "The old Tavern"
|
/php-src/ext/standard/tests/serialize/ |
H A D | 005.phpt | 6 // 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 D | bug49649.phpt | 15 * public $notThere = 'old'; 46 string(3) "old"
|
H A D | bug49649_1.phpt | 15 * public $notThere = 'old'; 46 string(3) "old"
|
H A D | bug49649_2.phpt | 15 * public $notThere = 'old'; 46 string(3) "old"
|
H A D | bug36424.phpt | 46 … __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-src/ext/soap/ |
H A D | php_xml.c | 92 bool old; in soap_xmlParseFile() local 105 old = php_libxml_disable_entity_loader(1); in soap_xmlParseFile() 107 php_libxml_disable_entity_loader(old); in soap_xmlParseFile() 144 bool old; in soap_xmlParseMemory() local 156 old = php_libxml_disable_entity_loader(1); in soap_xmlParseMemory() local 158 php_libxml_disable_entity_loader(old); in soap_xmlParseMemory()
|
/php-src/.github/workflows/ |
H A D | close-needs-feedback.yml | 1 name: Close old issues that need feedback 18 - name: Close old issues that need feedback
|
/php-src/Zend/asm/ |
H A D | jump_sparc64_sysv_elf_gas.S | 45 # restore old %sp (pointing to old context-data) in %o0
|
/php-src/ext/mysqli/tests/ |
H A D | table.inc | 11 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));
|