Home
last modified time | relevance | path

Searched refs:hash (Results 151 – 175 of 199) sorted by relevance

12345678

/PHP-7.2/ext/standard/tests/mail/
H A Dezmlm_hash_error.phpt6 * Description: Calculate the hash value needed by EZMLM.
/PHP-7.2/Zend/
H A Dmicro_bench.php192 $hash = array('test' => 0);
194 $x = $hash['test'];
/PHP-7.2/ext/pdo/
H A Dpdo_stmt.c282 HashTable *hash; in really_register_bound_param() local
286 hash = is_param ? stmt->bound_params : stmt->bound_columns; in really_register_bound_param()
288 if (!hash) { in really_register_bound_param()
289 ALLOC_HASHTABLE(hash); in really_register_bound_param()
290 zend_hash_init(hash, 13, NULL, param_dtor, 0); in really_register_bound_param()
293 stmt->bound_params = hash; in really_register_bound_param()
295 stmt->bound_columns = hash; in really_register_bound_param()
387 zend_hash_index_del(hash, param->paramno); in really_register_bound_param()
392 pparam = zend_hash_update_mem(hash, param->name, param, sizeof(struct pdo_bound_param_data)); in really_register_bound_param()
404 zend_hash_del(hash, pparam->name); in really_register_bound_param()
[all …]
/PHP-7.2/ext/hash/tests/
H A Dfnv164.phpt4 <?php extension_loaded('hash') or die ('Skip - hash extension not available'); ?>
189 $result = hash('fnv164', $test[0]);
H A Dfnv132.phpt4 <?php extension_loaded('hash') or die ('Skip - hash extension not available'); ?>
189 $result = hash('fnv132', $test[0]);
H A Dhash-clone.phpt4 <?php extension_loaded('hash') or die('skip'); ?>
H A Dhash_copy_001.phpt4 <?php extension_loaded('hash') or die('skip'); ?>
/PHP-7.2/ext/oci8/tests/
H A Dpassword_2.phpt31 // Second connect should return a new resource because the hash string will be different from $c1
H A Dpassword.phpt32 // Second connect should return a new resource because the hash string will be different from $c1
/PHP-7.2/ext/standard/tests/strings/
H A Dsha1_variation1.phpt7 * Description: Calculate the sha1 hash of a string
H A Dsha1_variation2.phpt7 * Description: Calculate the sha1 hash of a string
H A Dmd5_file.phpt7 * Description: Calculate the MD5 hash of a given file
H A Dsha1_file.phpt7 * Description: Calculate the sha1 hash of a file
/PHP-7.2/ext/mbstring/oniguruma/
H A DREADME129 st.h hash table functions header file
130 st.c hash table functions
H A DREADME.md168 |st.h |hash table functions header file |
169 |st.c |hash table functions |
/PHP-7.2/ext/opcache/
H A DZendAccelerator.h239 zend_accel_hash hash; /* hash table for cached scripts */ member
/PHP-7.2/ext/sqlite3/
H A Dsqlite3.c1417 HashTable *hash; in register_bound_parameter_to_sqlite() local
1418 hash = stmt->bound_params; in register_bound_parameter_to_sqlite()
1420 if (!hash) { in register_bound_parameter_to_sqlite()
1421 ALLOC_HASHTABLE(hash); in register_bound_parameter_to_sqlite()
1422 zend_hash_init(hash, 13, NULL, sqlite3_param_dtor, 0); in register_bound_parameter_to_sqlite()
1423 stmt->bound_params = hash; in register_bound_parameter_to_sqlite()
1449 zend_hash_index_del(hash, param->param_number); in register_bound_parameter_to_sqlite()
1453 zend_hash_update_mem(hash, param->name, param, sizeof(struct php_sqlite3_bound_param)); in register_bound_parameter_to_sqlite()
1455 …zend_hash_index_update_mem(hash, param->param_number, param, sizeof(struct php_sqlite3_bound_param… in register_bound_parameter_to_sqlite()
/PHP-7.2/tests/lang/
H A D024.phpt270 *** hash test... ***
500 *** hash test... ***
725 *** hash test... ***
950 *** hash test... ***
1175 *** hash test... ***
1400 *** hash test... ***
1625 *** hash test... ***
1850 *** hash test... ***
2075 *** hash test... ***
2300 *** hash test... ***
[all …]
H A D023.phpt157 *** hash test... ***<br>
/PHP-7.2/ext/standard/tests/file/
H A Dfread_basic.phpt58 hash using md5() function
69 var_dump( md5($data_from_file) ); // calculate the hash and dump it
81 var_dump( md5($data_from_file) ); // calculate the hash and dump it
93 var_dump( md5($data_from_file) ); // calculate the hash and dump it
H A Dfwrite_variation1-win32-mb.phpt73 var_dump(md5(file_get_contents($filename))); // hash the output
H A Dfwrite_variation1-win32.phpt73 var_dump(md5(file_get_contents($filename))); // hash the output
H A Dfwrite_variation1.phpt72 var_dump(md5(file_get_contents($filename))); // hash the output
/PHP-7.2/ext/session/tests/
H A Dsave_handler.inc136 // e.g. hash('sha2', random_bytes(64)) or use /dev/urandom
/PHP-7.2/ext/standard/
H A Dvar_unserializer.re398 //??? update hash
409 //??? update hash
855 /* we can't convert from packed to hash during unserialization, because

Completed in 258 milliseconds

12345678