sha256_rounds_prefix  319 ext/standard/crypt_sha256.c static const char sha256_rounds_prefix[] = "rounds=";
sha256_rounds_prefix  372 ext/standard/crypt_sha256.c 	if (strncmp(salt, sha256_rounds_prefix, sizeof(sha256_rounds_prefix) - 1) == 0) {
sha256_rounds_prefix  373 ext/standard/crypt_sha256.c 		const char *num = salt + sizeof(sha256_rounds_prefix) - 1;
sha256_rounds_prefix  523 ext/standard/crypt_sha256.c 		int n = _snprintf(cp, MAX(0, buflen), "%s" ZEND_ULONG_FMT "$", sha256_rounds_prefix, rounds);
sha256_rounds_prefix  525 ext/standard/crypt_sha256.c 		int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha256_rounds_prefix, rounds);
sha256_rounds_prefix  602 ext/standard/crypt_sha256.c 			+ sizeof(sha256_rounds_prefix) + 9 + 1