| /src/crypto/external/apache2/openssl/dist/crypto/srp/ |
| srp_vfy.c | 725 BIGNUM *salttmp = NULL, *verif; local 745 verif = BN_new(); 746 if (verif == NULL) 749 if (!BN_mod_exp(verif, g, x, N, bn_ctx)) { 750 BN_clear_free(verif); 756 *verifier = verif;
|
| /src/crypto/external/bsd/openssl/dist/crypto/srp/ |
| srp_vfy.c | 725 BIGNUM *salttmp = NULL, *verif; local 748 verif = BN_new(); 749 if (verif == NULL) 752 if (!BN_mod_exp(verif, g, x, N, bn_ctx)) { 753 BN_clear_free(verif); 759 *verifier = verif;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/srp/ |
| srp_vfy.c | 687 BIGNUM *salttmp = NULL, *verif; local 710 verif = BN_new(); 711 if (verif == NULL) 714 if (!BN_mod_exp(verif, g, x, N, bn_ctx)) { 715 BN_clear_free(verif); 721 *verifier = verif;
|
| /src/external/bsd/zstd/dist/lib/common/ |
| entropy_common.c | 293 U32 const verif = 1 << ZSTD_highbit32(rest); local 295 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|
| /src/external/bsd/zstd/dist/lib/legacy/ |
| zstd_v01.c | 985 U32 verif = 1 << FSE_highbit32(rest); local 987 if (verif != rest) return (size_t)-FSE_ERROR_corruptionDetected; /* last value must be a clean power of 2 */
|
| zstd_v03.c | 1539 U32 verif = 1 << BIT_highbit32(rest); local 1541 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|
| zstd_v04.c | 1698 U32 verif = 1 << BIT_highbit32(rest); local 1700 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|
| zstd_v02.c | 1543 U32 verif = 1 << BIT_highbit32(rest); local 1545 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|
| zstd_v05.c | 1796 U32 verif = 1 << BITv05_highbit32(rest); local 1798 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|
| zstd_v06.c | 1852 U32 const verif = 1 << BITv06_highbit32(rest); local 1854 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|
| zstd_v07.c | 1305 U32 const verif = 1 << BITv07_highbit32(rest); local 1307 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
|