Home
last modified time | relevance | path

Searched refs:s3 (Results 1 – 25 of 41) sorted by relevance

12

/php-src/ext/mbstring/tests/
H A Dmb_convert_variables.phpt47 $s3 = $euc_jp;
50 echo bin2hex("$s1$s2$s3"), "\n"; // Converted to EUC-JP
54 $a = array($s3, $s2, $s1);
60 $a = array($s1, $s2, $s3);
72 public $s3;
80 $this->s3 = $euc_jp;
88 public $s3;
96 $this->s3 = $euc_jp;
117 $s3 = $euc_jp;
118 $a = array($s1, $s2, $s3);
[all …]
H A Dsimpletest.phpt24 $s3 = $s1.$s2."\n";
25 echo "echo: ".$s3;
/php-src/ext/random/tests/
H A Dengines.inc55 private int $s3
66 $result = (self::rotl(($this->s0 + $this->s3) & 0xFFFFFFFF, 7) + $this->s0) & 0xFFFFFFFF;
71 $this->s3 ^= $this->s1;
73 $this->s0 ^= $this->s3;
77 $this->s3 = self::rotl($this->s3, 11);
/php-src/Zend/tests/
H A Dself_and.phpt9 $s3 = str_repeat("f", 1);
25 $s3 &= " ";
26 var_dump($s3);
H A Dself_or.phpt9 $s3 = str_repeat("f", 1);
25 $s3 |= " ";
26 var_dump($s3);
H A Dself_xor.phpt9 $s3 = str_repeat("f", 1);
25 $s3 ^= " ";
26 var_dump($s3);
H A Dadd_006.phpt11 $s3 = "48474874";
23 $c = $i + $s3;
39 $c = $s3 + $i;
H A Dbug79934.phpt17 eval("\$s3 = <<<HEREDOC\r a\r\r b\r HEREDOC;");
18 var_dump(addcslashes($s3, "\r"));
/php-src/ext/reflection/tests/
H A Dbug79062.phpt17 private $s3 = 'I\'m a string :)';
27 $s3 = $ref->getProperty('s3');
/php-src/ext/opcache/tests/opt/
H A Ddce_001.phpt14 function foo(string $s1, string $s2, string $s3, string $s4) {
15 $x = ($s1 . $s2) . ($s3 . $s4);
33 0002 CV2($s3) = RECV 3
/php-src/ext/standard/tests/strings/
H A Dhtmlspecialchars_basic.phpt9 $s3 = "a>,\<bc<>\"&\n";
15 echo "Test 3: " . htmlspecialchars ($s3);
20 echo "Test 8: " . htmlspecialchars ($s3,ENT_NOQUOTES);
25 echo "Test 13: " . htmlspecialchars ($s3,ENT_COMPAT);
30 echo "Test 18: " . htmlspecialchars ($s3,ENT_QUOTES);
37 echo "Test 23: " . htmlspecialchars ($s3,ENT_QUOTES, "ISO-8859-1");
43 $s3 = "\"300 < 400\"\n";
46 echo "Test 27: " . htmlspecialchars ($s3,ENT_NOQUOTES, "ISO-8859-1", false);
/php-src/ext/standard/tests/array/
H A Darray_sum.phpt22 $s3 = array_sum($c);
24 var_dump($s3, $s4);
/php-src/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_doclit_009w.phpt30 $s3 = new MoreExtendedStruct(new SOAPStruct("s3",3,3.3),3,"arg",-3,5,true);
35 "param3" => $s3));
43 …otherIntMessage></ns1:param2><ns1:param3><ns2:structMessage><ns2:varString>s3</ns2:varString><ns2:…
45 …ring><detail><ns2:MoreExtendedStructPart><ns1:structMessage><ns1:varString>s3</ns1:varString><ns1:…
H A Dr4_groupH_complex_doclit_007w.phpt30 $s3 = new MoreExtendedStruct(new SOAPStruct("s3",3,3.3),3,"arg",-3,5,true);
35 "param3" => $s3));
43 …otherIntMessage></ns1:param2><ns1:param3><ns2:structMessage><ns2:varString>s3</ns2:varString><ns2:…
H A Dr4_groupH_complex_doclit_010w.phpt30 $s3 = new MoreExtendedStruct(new SOAPStruct("s3",3,3.3),3,"arg",-3,5,true);
35 "param3" => $s3));
43 …otherIntMessage></ns1:param2><ns1:param3><ns2:structMessage><ns2:varString>s3</ns2:varString><ns2:…
H A Dround4_groupH_complex_rpcenc.inc24 function echoMultipleFaults2($which, $s1, $s2, $s3) {
28 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $s3, "ComplexF…
H A Dr4_groupH_complex_doclit_008w.phpt30 $s3 = new MoreExtendedStruct(new SOAPStruct("s3",3,3.3),3,"arg",-3,5,true);
35 "param3" => $s3));
43 …otherIntMessage></ns1:param2><ns1:param3><ns2:structMessage><ns2:varString>s3</ns2:varString><ns2:…
/php-src/ext/random/
H A Dengine_xoshiro256starstar.c64 uint64_t s0 = 0, s1 = 0, s2 = 0, s3 = 0; in jump() local
72 s3 ^= state->state[3]; in jump()
82 state->state[3] = s3; in jump()
85 …_random_status_state_xoshiro256starstar *state, uint64_t s0, uint64_t s1, uint64_t s2, uint64_t s3) in php_random_xoshiro256starstar_seed256() argument
90 state->state[3] = s3; in php_random_xoshiro256starstar_seed256()
/php-src/ext/phar/
H A Dmakestub.php31 $s3 = substr($s, strlen($s2) + 4 + strlen($s1) + strlen('index.php')); variable
55 $s3split = str_split($s3, 2046);
/php-src/Zend/asm/
H A Djump_riscv64_sysv_elf_gas.S87 sd s3, 0x78(sp)
125 ld s3, 0x78(sp)
H A Djump_loongarch64_sysv_elf_gas.S64 st.d $s3, $sp, 88
96 ld.d $s3, $sp, 88
H A Djump_mips32_o32_elf_gas.S54 sw $s3, 60($sp) # save S3
91 lw $s3, 60($sp) # restore S3
H A Djump_mips64_n64_elf_gas.S61 sd $s3, 88($sp) # save S3
101 ld $s3, 88($sp) # restore S3
/php-src/ext/sodium/tests/
H A Dcrypto_core_ristretto255.phpt87 $s3 = sodium_crypto_core_ristretto255_from_hash($ru);
88 var_dump(sodium_crypto_core_ristretto255_is_valid_point($s3));
/php-src/ext/standard/html_tables/
H A Dhtml_table_gen.php523 $s3 = hexdec($el[1]) & 0x3F; variable
525 $mstable[$s1][$s2][$s3] = "";
527 $mstable[$s1][$s2][$s3] = $el[0];

Completed in 21 milliseconds

12