/PHP-8.2/ext/hash/murmur/ |
H A D | PMurHash128.c | 126 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b;\ 222 h1 += h2; h1 += h3; h1 += h4; in PMurHash128x86_Result() 223 h2 += h1; h3 += h1; h4 += h1; in PMurHash128x86_Result() 225 h1 = fmix32(h1); in PMurHash128x86_Result() 230 h1 += h2; h1 += h3; h1 += h4; in PMurHash128x86_Result() 231 h2 += h1; h3 += h1; h4 += h1; in PMurHash128x86_Result() 450 h1 = ROTL64(h1,27); h1 += h2; h1 = h1*5+0x52dce729;\ 509 h1 += h2; in PMurHash128x64_Result() 510 h2 += h1; in PMurHash128x64_Result() 512 h1 = fmix64(h1); in PMurHash128x64_Result() [all …]
|
H A D | PMurHash.c | 99 h1 ^= k1;\ 100 h1 = ROTL32(h1,13);\ 101 h1 = h1*5+0xe6546b64;\ 113 doblock(h1, c);\ 125 uint32_t h1 = *ph1; in PMurHash32_Process() local 147 doblock(h1, k1); in PMurHash32_Process() 165 doblock(h1, k1); in PMurHash32_Process() 173 doblock(h1, k1); in PMurHash32_Process() 181 doblock(h1, k1); in PMurHash32_Process() 189 doblock(h1, k1); in PMurHash32_Process() [all …]
|
/PHP-8.2/ext/standard/tests/general_functions/ |
H A D | phpcredits2.phpt | 21 <h1>PHP Credits</h1> 24 <h1>PHP Credits</h1>
|
/PHP-8.2/ext/hash/tests/ |
H A D | murmurhash3.phpt | 23 $h1 = hash("murmur3a", "hello there"); 24 echo $h0, " ", $h1, "\n"; 30 $h1 = hash("murmur3c", "hello there"); 31 echo $h0, " ", $h1, "\n"; 37 $h1 = hash("murmur3f", "hello there"); 38 echo $h0, " ", $h1, "\n";
|
H A D | xxhash_secret.phpt | 43 …$h1 = hash($a, "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", options: ["secret" => $… 44 echo $h0 , " == ", $h1, " == ", (($h0 == $h1) ? "true" : "false"), "\n";
|
/PHP-8.2/ext/gd/tests/ |
H A D | bug53580.phpt | 16 $h1 = 150; 22 $im1 = imagecreatetruecolor($w1, $h1); 23 imagecopyresampled($im1, $im0, 0, 0, 0, 0, $w1, $h1, $w0, $h0); 26 for ($j = 0; $j < $h1; $j++) {
|
/PHP-8.2/ext/xsl/tests/ |
H A D | bug53965.phpt | 24 <h1>Fight for your mind</h1><h2>by Ben Harper - 1995</h2><hr> 25 <h1>Electric Ladyland</h1><h2>by Jimi Hendrix - 1997</h2><hr>
|
H A D | transformToDoc_sxe_type_error.phpt | 24 var_dump($result->h1->foo()); 29 ["h1"]=>
|
/PHP-8.2/ext/zlib/tests/ |
H A D | gzopen_variation7.phpt | 9 $h1 = gzopen($f, 'r'); 12 var_dump(gzread($h1, 30)); 14 var_dump(gzread($h1, 15)); 15 gzclose($h1);
|
/PHP-8.2/sapi/cli/tests/ |
H A D | php_cli_server_013.phpt | 134 </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/</code> was not found o… 143 </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/style.css</code> w… 161 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html> 171 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html> 181 </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html>
|
/PHP-8.2/ext/xsl/tests/53965/ |
H A D | include.xsl | 3 <h1><xsl:value-of select="title"/></h1>
|
/PHP-8.2/ext/phar/tests/ |
H A D | frontcontroller6.phpt | 19 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller8.phpt | 19 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller10.phpt | 22 <h1>403 - File Access Denied</h1>
|
/PHP-8.2/ext/phar/tests/tar/ |
H A D | frontcontroller8.phar.phpt | 19 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller6.phar.phpt | 19 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller10.phar.phpt | 22 <h1>403 - File Access Denied</h1>
|
/PHP-8.2/ext/phar/tests/zip/ |
H A D | frontcontroller8.phar.phpt | 19 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller6.phar.phpt | 22 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller10.phar.phpt | 22 <h1>403 - File Access Denied</h1>
|
/PHP-8.2/ext/phar/tests/cache_list/ |
H A D | frontcontroller8.phpt | 21 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller6.phpt | 21 <h1>404 - File Not Found</h1>
|
H A D | frontcontroller10.phpt | 23 <h1>403 - File Access Denied</h1>
|
/PHP-8.2/ext/sodium/tests/ |
H A D | crypto_shorthash.phpt | 9 $h1 = sodium_crypto_shorthash($m1, $k1); 10 echo bin2hex($h1) . "\n";
|
/PHP-8.2/ext/standard/tests/hrtime/ |
H A D | hrtime.phpt | 11 $h1 = hrtime(true); 15 $d1 = $h1 - $h0;
|