Home
last modified time | relevance | path

Searched refs:key_length (Results 1 – 10 of 10) sorted by relevance

/PHP-8.0/ext/opcache/
H A Dzend_accelerator_hash.c98 && entry->key_length == key_length in zend_accel_hash_update()
99 && !memcmp(entry->key, key, key_length)) { in zend_accel_hash_update()
137 entry->key_length = key_length; in zend_accel_hash_update()
156 && entry->key_length == key_length in zend_accel_hash_find_ex()
157 && !memcmp(entry->key, key, key_length)) { in zend_accel_hash_find_ex()
211 key_length, in zend_accel_hash_str_find()
212 zend_inline_hash_func(key, key_length), in zend_accel_hash_str_find()
224 key_length, in zend_accel_hash_str_find_entry()
225 zend_inline_hash_func(key, key_length), in zend_accel_hash_str_find_entry()
244 && entry->key_length == key_length in zend_accel_hash_unlink()
[all …]
H A Dzend_accelerator_hash.h52 uint32_t key_length; member
70 uint32_t key_length,
85 uint32_t key_length);
90 uint32_t key_length);
95 uint32_t key_length);
H A Dzend_persist.h25 …ersist_calc(zend_persistent_script *script, const char *key, unsigned int key_length, int for_shm);
26 …pt_persist(zend_persistent_script *script, const char **key, unsigned int key_length, int for_shm);
H A DZendAccelerator.c1122 int key_length; in accel_make_persistent_key() local
1245 key_length = path_length + 1; in accel_make_persistent_key()
1247 key_length += cwd_len; in accel_make_persistent_key()
1250 ZCG(key)[key_length] = ':'; in accel_make_persistent_key()
1251 key_length += 1; in accel_make_persistent_key()
1269 ZCG(key)[key_length] = ':'; in accel_make_persistent_key()
1270 key_length += 1; in accel_make_persistent_key()
1274 ZCG(key)[key_length] = '\0'; in accel_make_persistent_key()
1963 int key_length; in persistent_compile_file() local
2005 key_length = ZCG(key_len); in persistent_compile_file()
[all …]
H A Dzend_accelerator_module.c314 int key_length; local
316 key = accel_make_persistent_key(ZSTR_VAL(filename), ZSTR_LEN(filename), &key_length);
318 …zend_persistent_script *persistent_script = zend_accel_hash_str_find(&ZCSG(hash), key, key_length);
562 …zend_hash_str_update(Z_ARRVAL_P(return_value), cache_entry->key, cache_entry->key_length, &persist…
H A Dzend_persist_calc.c554 …nd_persistent_script *new_persistent_script, const char *key, unsigned int key_length, int for_shm) in zend_accel_script_persist_calc() argument
572 ADD_SIZE(key_length + 1); in zend_accel_script_persist_calc()
H A Dzend_persist.c1170 …ipt_persist(zend_persistent_script *script, const char **key, unsigned int key_length, int for_shm) in zend_accel_script_persist() argument
1180 *key = zend_shared_memdup_put((void*)*key, key_length + 1); in zend_accel_script_persist()
/PHP-8.0/ext/openssl/
H A Dopenssl.stub.php106 function openssl_pbkdf2(string $password, string $salt, int $key_length, int $iterations, string $d… argument
213 function openssl_pkey_derive($public_key, $private_key, int $key_length = 0): string|false {} argument
H A Dopenssl_arginfo.h156 ZEND_ARG_TYPE_INFO(0, key_length, IS_LONG, 0)
361 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, key_length, IS_LONG, 0, "0")
H A Dopenssl.c4891 zend_long key_length = 0, iterations = 0; in PHP_FUNCTION() local
4905 &key_length, &iterations, in PHP_FUNCTION()
4912 PHP_OPENSSL_CHECK_LONG_TO_INT(key_length, key, 3); in PHP_FUNCTION()
4915 if (key_length <= 0) { in PHP_FUNCTION()
4931 out_buffer = zend_string_alloc(key_length, 0); in PHP_FUNCTION()
4933 …n, (unsigned char *)salt, (int)salt_len, (int)iterations, digest, (int)key_length, (unsigned char*… in PHP_FUNCTION()
4934 ZSTR_VAL(out_buffer)[key_length] = 0; in PHP_FUNCTION()

Completed in 78 milliseconds