iterations        619 ext/hash/hash.c 	long loops, i, j, iterations, length = 0, digest_length;
iterations        625 ext/hash/hash.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sssl|lb", &algo, &algo_len, &pass, &pass_len, &salt, &salt_len, &iterations, &length, &raw_output) == FAILURE) {
iterations        635 ext/hash/hash.c 	if (iterations <= 0) {
iterations        636 ext/hash/hash.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Iterations must be a positive integer: %ld", iterations);
iterations        702 ext/hash/hash.c 		for (j = 1; j < iterations; j++) {
iterations       1195 ext/hash/hash.c 	ZEND_ARG_INFO(0, iterations)
iterations        266 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, iterations)
iterations       3986 ext/openssl/openssl.c 	long key_length = 0, iterations = 0;
iterations       3997 ext/openssl/openssl.c 				&key_length, &iterations,
iterations       4020 ext/openssl/openssl.c 	if (PKCS5_PBKDF2_HMAC(password, password_len, (unsigned char *)salt, salt_len, iterations, digest, key_length, out_buffer) == 1) {