Lines Matching refs:option_buffer

127 	zval *option_buffer;  in php_password_get_salt()  local
129 if (!options || !(option_buffer = zend_hash_str_find(options, "salt", sizeof("salt") - 1))) { in php_password_get_salt()
135 switch (Z_TYPE_P(option_buffer)) { in php_password_get_salt()
137 buffer = zend_string_copy(Z_STR_P(option_buffer)); in php_password_get_salt()
142 buffer = zval_try_get_string(option_buffer); in php_password_get_salt()
356 zval *option_buffer; in php_password_argon2_needs_rehash() local
358 …if (options && (option_buffer = zend_hash_str_find(options, "memory_cost", sizeof("memory_cost")-1… in php_password_argon2_needs_rehash()
359 new_memory_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
362 …if (options && (option_buffer = zend_hash_str_find(options, "time_cost", sizeof("time_cost")-1)) !… in php_password_argon2_needs_rehash()
363 new_time_cost = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
366 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_needs_rehash()
367 new_threads = zval_get_long(option_buffer); in php_password_argon2_needs_rehash()
378 zval *option_buffer; in php_password_argon2_hash() local
386 …if (options && (option_buffer = zend_hash_str_find(options, "memory_cost", sizeof("memory_cost")-1… in php_password_argon2_hash()
387 memory_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
395 …if (options && (option_buffer = zend_hash_str_find(options, "time_cost", sizeof("time_cost")-1)) !… in php_password_argon2_hash()
396 time_cost = zval_get_long(option_buffer); in php_password_argon2_hash()
404 …if (options && (option_buffer = zend_hash_str_find(options, "threads", sizeof("threads")-1)) != NU… in php_password_argon2_hash()
405 threads = zval_get_long(option_buffer); in php_password_argon2_hash()