Searched refs:verif (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/crypto/openssl/crypto/srp/
H A Dsrp_vfy.c723 BIGNUM *salttmp = NULL, *verif; local
746 verif = BN_new();
747 if (verif == NULL)
750 if (!BN_mod_exp(verif, g, x, N, bn_ctx)) {
751 BN_clear_free(verif);
757 *verifier = verif;
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dentropy_common.c203 U32 const verif = 1 << BIT_highbit32(rest); local
205 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dentropy_common.c321 U32 const verif = 1 << BIT_highbit32(rest); local
323 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c1023 U32 verif = 1 << FSE_highbit32(rest); local
1025 if (verif != rest) return (size_t)-FSE_ERROR_corruptionDetected; /* last value must be a clean power of 2 */
H A Dzstd_v03.c1601 U32 verif = 1 << BIT_highbit32(rest); local
1603 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
H A Dzstd_v06.c1908 U32 const verif = 1 << BITv06_highbit32(rest); local
1910 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
H A Dzstd_v05.c1848 U32 verif = 1 << BITv05_highbit32(rest); local
1850 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
H A Dzstd_v04.c1754 U32 verif = 1 << BIT_highbit32(rest); local
1756 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
H A Dzstd_v07.c1360 U32 const verif = 1 << BITv07_highbit32(rest); local
1362 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
H A Dzstd_v02.c1604 U32 verif = 1 << BIT_highbit32(rest); local
1606 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */

Completed in 353 milliseconds