iterations        614 ext/hash/hash.c 	zend_long loops, i, j, iterations, digest_length = 0, length = 0;
iterations        620 ext/hash/hash.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sssl|lb", &algo, &algo_len, &pass, &pass_len, &salt, &salt_len, &iterations, &length, &raw_output) == FAILURE) {
iterations        630 ext/hash/hash.c 	if (iterations <= 0) {
iterations        631 ext/hash/hash.c 		php_error_docref(NULL, E_WARNING, "Iterations must be a positive integer: " ZEND_LONG_FMT, iterations);
iterations        697 ext/hash/hash.c 		for (j = 1; j < iterations; j++) {
iterations       1197 ext/hash/hash.c 	ZEND_ARG_INFO(0, iterations)
iterations        270 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, iterations)
iterations       4022 ext/openssl/openssl.c 	zend_long key_length = 0, iterations = 0;
iterations       4036 ext/openssl/openssl.c 				&key_length, &iterations,
iterations       4057 ext/openssl/openssl.c 	PHP_OPENSSL_CHECK_LONG_TO_INT(iterations, iterations);
iterations       4063 ext/openssl/openssl.c 	if (PKCS5_PBKDF2_HMAC(password, (int)password_len, (unsigned char *)salt, (int)salt_len, (int)iterations, digest, (int)key_length, (unsigned char*)ZSTR_VAL(out_buffer)) == 1) {