sha512_rounds_prefix  352 ext/standard/crypt_sha512.c static const char sha512_rounds_prefix[] = "rounds=";
sha512_rounds_prefix  405 ext/standard/crypt_sha512.c 	if (strncmp(salt, sha512_rounds_prefix, sizeof(sha512_rounds_prefix) - 1) == 0) {
sha512_rounds_prefix  406 ext/standard/crypt_sha512.c 		const char *num = salt + sizeof(sha512_rounds_prefix) - 1;
sha512_rounds_prefix  558 ext/standard/crypt_sha512.c 	  int n = _snprintf(cp, MAX(0, buflen), "%s" ZEND_ULONG_FMT "$", sha512_rounds_prefix, rounds);
sha512_rounds_prefix  560 ext/standard/crypt_sha512.c 	  int n = snprintf(cp, MAX(0, buflen), "%s%zu$", sha512_rounds_prefix, rounds);
sha512_rounds_prefix  649 ext/standard/crypt_sha512.c 		+ sizeof(sha512_rounds_prefix) + 9 + 1