Home
last modified time | relevance | path

Searched refs:hash (Results 101 – 125 of 146) sorted by relevance

123456

/PHP-5.3/ext/openssl/tests/
H A Dopenssl_x509_parse_basic.phpt31 ["hash"]=>
171 ["hash"]=>
/PHP-5.3/tests/lang/
H A D031.phpt2 Bug #16227 (Internal hash position bug on assignment)
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 …]
/PHP-5.3/ext/standard/tests/mail/
H A Dezmlm_hash_error.phpt6 * Description: Calculate the hash value needed by EZMLM.
/PHP-5.3/ext/oci8/tests/
H A Dpassword.phpt32 // Second connect should return a new resource because the hash string will be different from $c1
H A Dpassword_2.phpt31 // Second connect should return a new resource because the hash string will be different from $c1
/PHP-5.3/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-5.3/ext/pdo/
H A Dpdo_stmt.c304 HashTable *hash; in really_register_bound_param() local
307 hash = is_param ? stmt->bound_params : stmt->bound_columns; in really_register_bound_param()
309 if (!hash) { in really_register_bound_param()
310 ALLOC_HASHTABLE(hash); in really_register_bound_param()
311 zend_hash_init(hash, 13, NULL, param_dtor, 0); in really_register_bound_param()
314 stmt->bound_params = hash; in really_register_bound_param()
316 stmt->bound_columns = hash; in really_register_bound_param()
400 zend_hash_index_del(hash, param->paramno); in really_register_bound_param()
405 zend_hash_update(hash, param->name, param->namelen, param, in really_register_bound_param()
419 zend_hash_del(hash, pparam->name, pparam->namelen); in really_register_bound_param()
[all …]
/PHP-5.3/ext/sqlite3/
H A Dsqlite3.c1360 HashTable *hash; local
1361 hash = stmt->bound_params;
1363 if (!hash) {
1364 ALLOC_HASHTABLE(hash);
1365 zend_hash_init(hash, 13, NULL, sqlite3_param_dtor, 0);
1366 stmt->bound_params = hash;
1390 zend_hash_index_del(hash, param->param_number);
1394 zend_hash_update(hash, param->name, param->name_len, param, sizeof(*param), NULL);
1396 zend_hash_index_update(hash, param->param_number, param, sizeof(*param), NULL);
/PHP-5.3/ext/mbstring/oniguruma/
H A DREADME131 st.h hash table functions header file
132 st.c hash table functions
/PHP-5.3/ext/standard/
H A Dbasic_functions.c5930 ALLOC_ZVAL(hash);
5931 INIT_PZVAL(hash);
5932 array_init(hash);
5936 hash = *find_hash;
5940 ALLOC_ZVAL(hash);
5941 INIT_PZVAL(hash);
5942 array_init(hash);
5946 hash = *find_hash;
5951 zval_dtor(hash);
5952 INIT_PZVAL(hash);
[all …]
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dvdbe.c166 pOld = sqliteHashInsert(&p->hash, pElem->zKey, pElem->nKey, pElem); in AggInsert()
184 HashElem *pElem = sqliteHashFirst(&p->hash); in _AggInFocus()
187 pElem = sqliteHashFirst(&p->hash); in _AggInFocus()
3729 nRoot = sqliteHashCount(&pSet->hash); in sqliteVdbeExec()
3736 sqliteHashClear(&pSet->hash); in sqliteVdbeExec()
4490 pElem = sqliteHashFind(&p->agg.hash, zKey, nKey); in sqliteVdbeExec()
4570 p->agg.pSearch = sqliteHashFirst(&p->agg.hash); in sqliteVdbeExec()
4620 sqliteHashInit(&p->aSet[k].hash, SQLITE_HASH_BINARY, 1); in sqliteVdbeExec()
4629 sqliteHashInsert(&p->aSet[i].hash, pTos->z, pTos->n, p); in sqliteVdbeExec()
4666 sqliteHashFind(&p->aSet[i].hash, pTos->z, pTos->n)==0 ){ in sqliteVdbeExec()
[all …]
H A Dvdbeaux.c627 sqliteHashInit(&p->agg.hash, SQLITE_HASH_BINARY, 0); in sqliteVdbeMakeReady()
681 for(p = sqliteHashFirst(&pAgg->hash); p; p = sqliteHashNext(p)){ in sqliteVdbeAggReset()
707 sqliteHashClear(&pAgg->hash); in sqliteVdbeAggReset()
806 sqliteHashClear(&p->aSet[i].hash); in Cleanup()
H A Dlibsqlite.dsp157 SOURCE=hash.c
285 SOURCE=hash.h
/PHP-5.3/ext/spl/
H A Dphp_spl.c725 char* hash; in PHP_FUNCTION() local
731 hash = emalloc(33); in PHP_FUNCTION()
732 php_spl_object_hash(obj, hash TSRMLS_CC); in PHP_FUNCTION()
734 RETVAL_STRING(hash, 0); in PHP_FUNCTION()
/PHP-5.3/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.phpt73 var_dump(md5(file_get_contents($filename))); // hash the output
/PHP-5.3/ext/hash/tests/
H A Dhash_copy_001.phpt4 <?php extension_loaded('hash') or die('skip'); ?>
/PHP-5.3/Zend/
H A Dzend_execute_API.c1054 ulong hash; in zend_lookup_class_ex() local
1070 hash = zend_inline_hash_func(lc_name, lc_length); in zend_lookup_class_ex()
1072 if (zend_hash_quick_find(EG(class_table), lc_name, lc_length, hash, (void **) ce) == SUCCESS) { in zend_lookup_class_ex()
1090 …if (zend_hash_quick_add(EG(in_autoload), lc_name, lc_length, hash, (void**)&dummy, sizeof(char), N… in zend_lookup_class_ex()
1131 zend_hash_quick_del(EG(in_autoload), lc_name, lc_length, hash); in zend_lookup_class_ex()
1142 retval = zend_hash_quick_find(EG(class_table), lc_name, lc_length, hash, (void **) ce); in zend_lookup_class_ex()
/PHP-5.3/ext/curl/
H A Dinterface.c1448 static void split_certinfo(char *string, zval *hash) in split_certinfo() argument
1469 add_assoc_string(hash, key, val, 1); in split_certinfo()
1502 zval *hash; in create_certinfo() local
1504 MAKE_STD_ZVAL(hash); in create_certinfo()
1505 array_init(hash); in create_certinfo()
1507 split_certinfo(&slist->data[len+1], hash); in create_certinfo()
1508 add_assoc_zval(certhash, s, hash); in create_certinfo()
/PHP-5.3/ext/sqlite/
H A Dsqlite.dsp151 SOURCE=.\libsqlite\src\hash.c
155 SOURCE=.\libsqlite\src\hash.h
H A Dconfig.m497 libsqlite/src/hash.c libsqlite/src/insert.c libsqlite/src/main.c \

Completed in 103 milliseconds

123456