Lines Matching refs:library
55 This text, the library and the accompanying textbook are all hereby placed in the public domain. This book has been
75 LibTomMath is a library of source code which provides a series of efficient and carefully written functions for manipulating
79 In a nutshell the library was written from scratch with verbose comments to help instruct computer science students how
85 As of the v0.25 the library source code has been placed in the public domain with every new release. As of the v0.28
88 algorithms used in the library.
95 LibTomMath is meant to be very ``GCC friendly'' as it comes with a makefile well suited for GCC. However, the library will
100 To build as a static library for GCC issue the following
105 command. This will build the library and archive the object files in ``libtommath.a''. Now you link against
111 This will build the library and archive the object files in ``tommath.lib''. This has been tested with MSVC
115 To build as a shared library for GCC issue the following
121 library (resource) will be called ``libtommath.la'' while the static library called ``libtommath.a''. Generally
125 Cygwin to work with since it requires the auto-export/import functionality. The resulting DLL and import library
129 To build the library and the test harness type
135 This will build the library, ``test'' and ``mtest/mtest''. The ``test'' program will accept test vectors and verify the
136 results. ``mtest/mtest'' will generate test vectors using the MPI library by Michael Fromberger\footnote{A copy of MPI
156 Each phase changes how the library is built and they are applied one after another respectively.
164 don't need the vast majority of the library to perform these operations. Aside from LTM\_ALL there is
172 function in the respective file will be compiled and linked into the library. Accordingly when the define
173 is absent the file will not be compiled and not contribute any size to the library.
245 Unlike GNU MP (GMP) Library, LIP, OpenSSL or various other commercial kits (Miracl), LibTomMath was not written with
256 the library (beat that!).
290 on the other side of the coin LibTomMath offers you a totally free (public domain) well structured math library
296 In order to use LibTomMath you must include ``tommath.h'' and link against the appropriate library file (typically
297 libtommath.a). There is no library initialization required and the entire library is thread safe.
356 The arithmetic functions of the library are all organized to have the same style prototype. That is source operands
1670 \textit{Note:} As of v0.30 of the LibTomMath library this function has been deprecated. It is still available