Home
last modified time | relevance | path

Searched refs:option_buffer (Results 1 – 3 of 3) sorted by relevance

/PHP-8.1/ext/standard/
H A Dpassword.c285 zval *option_buffer; in php_password_argon2_needs_rehash() local
288 new_memory_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
291 …if (options && (option_buffer = zend_hash_str_find(options, "time_cost", sizeof("time_cost")-1)) !… in php_password_argon2_needs_rehash()
292 new_time_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
295 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_needs_rehash()
296 new_threads = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
307 zval *option_buffer; in php_password_argon2_hash() local
316 memory_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
325 time_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
333 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_hash()
[all …]
/PHP-8.1/ext/zlib/
H A Dzlib.c792 zval *option_buffer; in zlib_create_dictionary_string() local
795 ZVAL_DEREF(option_buffer); in zlib_create_dictionary_string()
796 switch (Z_TYPE_P(option_buffer)) { in zlib_create_dictionary_string()
798 zend_string *str = Z_STR_P(option_buffer); in zlib_create_dictionary_string()
874 zval *option_buffer; in PHP_FUNCTION() local
881 window = zval_get_long(option_buffer); in PHP_FUNCTION()
1092 zval *option_buffer; in PHP_FUNCTION() local
1099 level = zval_get_long(option_buffer); in PHP_FUNCTION()
1107 memory = zval_get_long(option_buffer); in PHP_FUNCTION()
1115 window = zval_get_long(option_buffer); in PHP_FUNCTION()
[all …]
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg.c491 zval *option_buffer; in PHP_FUNCTION() local
507 by_function = zend_is_true(option_buffer); in PHP_FUNCTION()
510 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
512 by_opcode = zend_is_true(option_buffer); in PHP_FUNCTION()
516 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("files")))) { in PHP_FUNCTION()
517 ZVAL_DEREF(option_buffer); in PHP_FUNCTION()
518 if (Z_TYPE_P(option_buffer) == IS_ARRAY && zend_hash_num_elements(Z_ARR_P(option_buffer)) > 0) { in PHP_FUNCTION()
524 ZEND_HASH_FOREACH_VAL(Z_ARR_P(option_buffer), filename) { in PHP_FUNCTION()
592 zval *option_buffer; in PHP_FUNCTION() local
612 by_function = zend_is_true(option_buffer); in PHP_FUNCTION()
[all …]

Completed in 16 milliseconds