Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dpassword.c282 zval *option_buffer; in php_password_argon2_needs_rehash() local
285 new_memory_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
288 …if (options && (option_buffer = zend_hash_str_find(options, "time_cost", sizeof("time_cost")-1)) !… in php_password_argon2_needs_rehash()
289 new_time_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
292 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_needs_rehash()
293 new_threads = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
304 zval *option_buffer; in php_password_argon2_hash() local
313 memory_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
322 time_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
330 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_hash()
[all …]
/php-src/ext/zlib/
H A Dzlib.c790 zval *option_buffer; in zlib_create_dictionary_string() local
793 ZVAL_DEREF(option_buffer); in zlib_create_dictionary_string()
794 switch (Z_TYPE_P(option_buffer)) { in zlib_create_dictionary_string()
796 zend_string *str = Z_STR_P(option_buffer); in zlib_create_dictionary_string()
872 zval *option_buffer; in PHP_FUNCTION() local
879 window = zval_get_long(option_buffer); in PHP_FUNCTION()
1090 zval *option_buffer; in PHP_FUNCTION() local
1097 level = zval_get_long(option_buffer); in PHP_FUNCTION()
1105 memory = zval_get_long(option_buffer); in PHP_FUNCTION()
1113 window = zval_get_long(option_buffer); in PHP_FUNCTION()
[all …]
/php-src/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 19 milliseconds