Home
last modified time | relevance | path

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

/PHP-8.2/ext/standard/
H A Dpassword.c281 zval *option_buffer; in php_password_argon2_needs_rehash() local
284 new_memory_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
287 …if (options && (option_buffer = zend_hash_str_find(options, "time_cost", sizeof("time_cost")-1)) !… in php_password_argon2_needs_rehash()
288 new_time_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
291 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_needs_rehash()
292 new_threads = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
303 zval *option_buffer; in php_password_argon2_hash() local
312 memory_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
321 time_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
329 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_hash()
[all …]
/PHP-8.2/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.2/sapi/phpdbg/
H A Dphpdbg.c493 zval *option_buffer; in PHP_FUNCTION() local
509 by_function = zend_is_true(option_buffer); in PHP_FUNCTION()
512 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
514 by_opcode = zend_is_true(option_buffer); in PHP_FUNCTION()
518 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("files")))) { in PHP_FUNCTION()
519 ZVAL_DEREF(option_buffer); in PHP_FUNCTION()
520 if (Z_TYPE_P(option_buffer) == IS_ARRAY && zend_hash_num_elements(Z_ARR_P(option_buffer)) > 0) { in PHP_FUNCTION()
526 ZEND_HASH_FOREACH_VAL(Z_ARR_P(option_buffer), filename) { in PHP_FUNCTION()
594 zval *option_buffer; in PHP_FUNCTION() local
614 by_function = zend_is_true(option_buffer); in PHP_FUNCTION()
[all …]

Completed in 16 milliseconds