Home
last modified time | relevance | path

Searched refs:out (Results 151 – 175 of 450) sorted by relevance

12345678910>>...18

/PHP-8.1/ext/hash/murmur/
H A DPMurHash128.c233 out[0] = h1; in PMurHash128x86_Result()
234 out[1] = h2; in PMurHash128x86_Result()
235 out[2] = h3; in PMurHash128x86_Result()
236 out[3] = h4; in PMurHash128x86_Result()
427 void PMurHash128x86(const void * key, const int len, uint32_t seed, void * out) in PMurHash128x86() argument
432 PMurHash128x86_Result(h, carry, (uint32_t) len, (uint32_t *) out); in PMurHash128x86()
484 const uint32_t total_length, uint64_t out[2]) in PMurHash128x64_Result()
518 out[0] = h1; in PMurHash128x64_Result()
519 out[1] = h2; in PMurHash128x64_Result()
634 void PMurHash128x64(const void * key, const int len, uint32_t seed, void * out) in PMurHash128x64() argument
[all …]
/PHP-8.1/Zend/tests/
H A Dns_024.phpt2 024: __NAMESPACE__ constant out of namespace
/PHP-8.1/ext/spl/tests/
H A Dfixedarray_001.phpt48 RuntimeException: Index invalid or out of range
50 RuntimeException: Index invalid or out of range
H A Dfixedarray_014.phpt15 Index invalid or out of range
/PHP-8.1/ext/standard/tests/mail/
H A Dmail_basic.phpt4 sendmail_path={MAIL:mailBasic.out}
16 $outFile = "mailBasic.out";
/PHP-8.1/ext/session/tests/
H A Dgh9583.phpt35 …od_exists($obj,'validateId')?('returns '.($obj->validateId(1)?'true':'false')):'is commented out');
43 validateId() is commented out
H A Dgh9583-extra.phpt43 …validateId') ? ('returns ' . ($obj->validateId(1) ? 'true' : 'false')) : 'is commented out'), "\n";
48 validateId() is commented out
/PHP-8.1/ext/opcache/tests/jit/
H A Dbug81249.phpt115 $out = null;
121 $out = $result;
126 assert($out === 728);
/PHP-8.1/ext/standard/tests/file/windows_mb_path/
H A Dutil.inc37 $out = trim(shell_exec($cmd));
39 if ($echo) var_dump($out, $out == basename($path));
44 return $out;
/PHP-8.1/ext/standard/tests/strings/
H A Dbug72823.phpt2 Bug #72823 (strtr out-of-bound access)
H A Dbug67249.phpt2 Bug #67249 (printf out-of-bounds read)
/PHP-8.1/ext/standard/tests/streams/
H A Dbug79984.phpt19 public function filter($in, $out, &$consumed, $closing): int
24 stream_bucket_append($out, $bucket);
H A Dstream_get_contents_001.phpt2 stream_get_contents() - Testing offset out of range
/PHP-8.1/ext/standard/tests/image/
H A Dbug67250.phpt2 Bug #67250 (iptcparse out-of-bounds read)
/PHP-8.1/ext/standard/
H A Dcrypt_freesec.c574 des_cipher(const char *in, char *out, uint32_t salt, int count, in des_cipher() argument
595 out[0] = l_out >> 24; in des_cipher()
596 out[1] = l_out >> 16; in des_cipher()
597 out[2] = l_out >> 8; in des_cipher()
598 out[3] = l_out; in des_cipher()
599 out[4] = r_out >> 24; in des_cipher()
600 out[5] = r_out >> 16; in des_cipher()
601 out[6] = r_out >> 8; in des_cipher()
602 out[7] = r_out; in des_cipher()
H A Dphp_crypt_r.h34 extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out);
/PHP-8.1/ext/gd/tests/
H A Dbug72227.phpt2 Bug #72227: imagescale out-of-bounds read
H A Dbug72298.phpt2 Bug #72298: pass2_no_dither out-of-bounds access
/PHP-8.1/ext/standard/tests/file/windows_links/
H A Dbug48746_3.phpt11 $ret = exec(get_junction().' /? 2>&1', $out);
12 if (strpos($out[0], 'recognized')) {
/PHP-8.1/ext/oci8/tests/
H A Drefcur_prefetch_2.phpt30 procedure open_ref_cur(cur1 out refcursortype);
31 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,c2 out varchar2);
34 procedure open_ref_cur(cur1 out refcursortype) is
38 procedure fetch_ref_cur(cur1 in refcursortype, c1 out number,
39 c2 out varchar2) is
H A Dbug37581.phpt17 procedure array_bind(in_str in str_array, out_str out string);
21 procedure array_bind(in_str in str_array, out_str out string) is
/PHP-8.1/ext/openssl/tests/
H A Dbug81713.phpt22 $outfile = __DIR__ . '/bug81713.out';
55 ["openssl_pkey_export", $priv_key_file_null, &$out],
58 ["openssl_private_encrypt", "test", &$out, $priv_key_file_null],
59 ["openssl_private_decrypt", "test", &$out, $priv_key_file_null],
60 ["openssl_public_encrypt", "test", &$out, $priv_key_file_null],
61 ["openssl_public_decrypt", "test", &$out, $priv_key_file_null],
62 ["openssl_sign", "test", &$out, $priv_key_file_null],
72 ["openssl_x509_export", $crt_file_null, &$out],
119 ["openssl_pkcs12_export", $crt_file_null, &$out, $priv_key_file, "pwd"],
120 ["openssl_pkcs12_export", $crt_file, &$out, $priv_key_file_null, "pwd"],
[all …]
/PHP-8.1/sapi/phpdbg/tests/
H A Dbug73794.phpt2 Bug #73794 (Crash (out of memory) when using run and # command separator)
/PHP-8.1/ext/hash/
H A Dphp_hash.h161 static inline void php_hash_bin2hex(char *out, const unsigned char *in, size_t in_len) in php_hash_bin2hex() argument
167 out[i * 2] = hexits[in[i] >> 4]; in php_hash_bin2hex()
168 out[(i * 2) + 1] = hexits[in[i] & 0x0F]; in php_hash_bin2hex()
/PHP-8.1/tests/lang/
H A D017.phpt2 Testing user-defined function falling out of an If into another

Completed in 102 milliseconds

12345678910>>...18