Files
wolfssl/doc/dox_comments/header_files-ja/tfm.h

18 lines
1.1 KiB
C
Raw Normal View History

/*!
\ingroup Math
\brief FastMath設定をチェックしますFP_SIZEが正しく機能するためにFP_SIZEが各ライブラリーに一致しなければならないためWolfCryptライブラリを独立して使用している場合に重要ですCheckFastMathSettingsCheckRuntimeFastMathとFP_SIZEを比較するだけで0
\return FP_SIZE FP_SIZEを返します
_Example_
\code
if (CheckFastMathSettings() != 1) {
return err_sys("Build vs. runtime fastmath FP_MAX_BITS mismatch\n");
}
// This is converted by the preprocessor to:
// if ( (CheckRunTimeFastMath() == FP_SIZE) != 1) {
// and confirms that the fast math settings match
// the compile time settings
\endcode
\sa CheckRunTimeSettings
*/
word32 CheckRunTimeFastMath(void);