Home
last modified time | relevance | path

Searched refs:x (Results 526 – 550 of 1819) sorted by relevance

1...<<21222324252627282930>>...73

/php-src/Zend/tests/
H A Ddereference_004.phpt9 public $x = array();
13 $this->x = $h;
16 return $this->x;
H A Dbug71474.phpt11 function test($n, $x) {
14 $x->bug();
15 test($n - 1, $x);
H A Dbug75420.2.phpt6 public function __isset($x) { $GLOBALS["name"] = 24; return true; }
7 public function __get($x) { var_dump($x); return 42; }
H A Dbug75420.3.phpt6 public function __isset($x) { $GLOBALS["name"] = 24; return true; }
7 public function __get($x) { var_dump($x); return 42; }
H A Dbug75420.4.phpt6 public function __isset($x) { $GLOBALS["name"] = 24; return true; }
7 public function __get($x) { var_dump($x); return 42; }
H A Dbug30707.phpt25 $x = new C;
26 $x->byePHP($x->plip());
/php-src/ext/gd/tests/
H A Dbug43073.phpt39 $x = 100;
44 $bbox = imagettftext($g, 24, (int)$angle, (int)(400+$x), (int)(400+$y), $black, $font, 'ABCDEF');
55 $temp = $cos_t * $x + $sin_t * $y;
56 $y = $cos_t * $y - $sin_t * $x;
57 $x = $temp;
H A Dimagefttext.phpt28 for ($x = 0; $x < $sx; ++$x) {
29 if (imagecolorat($im, $x, $y) == $colour_b) {
/php-src/ext/standard/tests/strings/
H A Dprintf_basic9.phpt11 $format1 = "%x";
12 $format2 = "%x %x";
13 $format3 = "%x %x %x";
/php-src/ext/soap/tests/
H A Dserver004.phpt7 function Add($x,$y) {
8 return $x+$y;
10 function Sub($x,$y) {
11 return $x-$y;
27 <x xsi:type="xsd:int">22</x>
/php-src/ext/date/tests/
H A Dbug78139.phpt6 "x",
7 "x UTC",
31 Parsing 'x':
40 Parsing 'x UTC':
42 Warning: timezone_open(): Unknown or bad timezone (x UTC) in %sbug78139.php on line %d
44 DateInvalidTimeZoneException: DateTimeZone::__construct(): Unknown or bad timezone (x UTC)
H A Dbug48678.phpt5 $x = new DateInterval("P3Y6M4DT12H30M5S");
6 print_r($x);
7 $y = unserialize(serialize($x));
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_090.phpt10 $x =& $this->prop;
12 $x = "foo";
13 var_dump($x);
/php-src/Zend/tests/match/
H A Dmatch_of_phi_optimization.phpt5 $x = true;
6 match ($x and true or true) {
7 false => $x
/php-src/ext/opcache/tests/jit/
H A Dreg_alloc_016.phpt11 var_dump($x);
12 $a - 536 >> 4 - $y - 4 << ++$x == $a ?: $b;
14 $x = $a ? $b : $b;
H A Dcount_001.phpt23 $x = [self::create_array(5)];
26 echo count($x[0]), "\n";
44 $x = ['x', 'y', 'z', 'a', new stdClass()];
45 echo C::count_ref($x), "\n";
/php-src/ext/hash/
H A Dhash_haval.c135 #define ROTR(x,n) (((x) >> (n)) | ((x) << (32 - (n)))) argument
142 uint32_t x[32]; in PHP_3HAVALTransform() local
145 Decode(x, block, 128); in PHP_3HAVALTransform()
152 …R(F1(E[M1[i]],E[M0[i]],E[M3[i]],E[M5[i]],E[M6[i]],E[M2[i]],E[M4[i]]),7) + ROTR(E[M7[i]],11) + x[i]; in PHP_3HAVALTransform()
167 ZEND_SECURE_ZERO((unsigned char*) x, sizeof(x)); in PHP_3HAVALTransform()
175 uint32_t x[32]; in PHP_4HAVALTransform() local
178 Decode(x, block, 128); in PHP_4HAVALTransform()
203 ZEND_SECURE_ZERO((unsigned char*) x, sizeof(x)); in PHP_4HAVALTransform()
211 uint32_t x[32]; in PHP_5HAVALTransform() local
214 Decode(x, block, 128); in PHP_5HAVALTransform()
[all …]
/php-src/Zend/
H A Dzend_signal.c321 size_t x; in zend_signal_activate() local
326 for (x = 0; x < sizeof(zend_sigs) / sizeof(*zend_sigs); x++) { in zend_signal_activate()
327 zend_signal_register(zend_sigs[x], zend_signal_handler_defer); in zend_signal_activate()
339 size_t x; in zend_signal_deactivate() local
347 for (x = 0; x < sizeof(zend_sigs) / sizeof(*zend_sigs); x++) { in zend_signal_deactivate()
348 sigaction(zend_sigs[x], NULL, &sa); in zend_signal_deactivate()
351 …r(E_CORE_WARNING, "zend_signal: handler was replaced for signal (%d) after startup", zend_sigs[x]); in zend_signal_deactivate()
376 size_t x; in zend_signal_globals_ctor() local
381 …for (x = 0; x < sizeof(zend_signal_globals->pstorage) / sizeof(*zend_signal_globals->pstorage); ++ in zend_signal_globals_ctor()
382 zend_signal_queue_t *queue = &zend_signal_globals->pstorage[x]; in zend_signal_globals_ctor()
/php-src/ext/opcache/tests/opt/
H A Dsccp_029.phpt14 public string $x = "x";
19 $test->x =& $ref;
/php-src/Zend/tests/try/
H A Dtry_finally_010.phpt12 echo "x";
14 echo "x";
24 echo "x";
/php-src/ext/tokenizer/tests/
H A Dbug81342.phpt8 $tokens = PhpToken::tokenize('<?php $x & $x; $x &
/php-src/tests/lang/
H A Dengine_assignExecutionOrder_003.phpt65 $x = array(array(0),0);
68 global $x;
69 $x = $b;
78 $x[mod($x1)][mod($x2)] = $bx[mod($x3)];
82 var_dump($x);
/php-src/ext/reflection/tests/
H A Dbug46064.phpt7 class x {
11 $o = new x;
55 string(1) "x"
67 string(30) "Property x::$zz does not exist"
72 string(1) "x"
/php-src/ext/pcre/tests/
H A Dmatch_flags.phpt6 var_dump(preg_match_all('/(.)x/', 'zxax', $match, PREG_PATTERN_ORDER));
9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER));
12 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_OFFSET_CAPTURE));
15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE));
/php-src/sapi/phpdbg/
H A Dphpdbg_sigsafe.c6 #define STR(x) #x in ZEND_EXTERN_MODULE_GLOBALS() argument
7 #define EXP_STR(x) STR(x) in ZEND_EXTERN_MODULE_GLOBALS() argument

Completed in 52 milliseconds

1...<<21222324252627282930>>...73