Searched defs:algo_len (Results 1 - 1 of 1) sorted by relevance
| /PHP_5_5/ext/hash/ |
| H A D | hash.c | 89 PHP_HASH_API const php_hash_ops *php_hash_fetch_ops(const char *algo, int algo_len) /* {{{ */ argument 92 char *lower = estrndup(algo, algo_len); 94 zend_str_tolower(lower, algo_len); 95 if (SUCCESS != zend_hash_find(&php_hash_hashtable, lower, algo_len + 1, (void*)&ops)) { 106 int algo_len = strlen(algo); local 107 char *lower = estrndup(algo, algo_len); 109 zend_str_tolower(lower, algo_len); 110 zend_hash_add(&php_hash_hashtable, lower, algo_len + 1, (void*)ops, sizeof(php_hash_ops), NULL); 129 int algo_len, data_len; local 135 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &algo, &algo_len, 244 int algo_len, data_len, key_len; local 336 int algo_len, key_len = 0, argc = ZEND_NUM_ARGS(); local 614 long loops, i, j, algo_len, pass_len, iterations, length, digest_length = 0; local [all...] |
Completed in 3 milliseconds