Lines Matching refs:integer
76 large integer numbers. It was written in portable ISO C source code so that it will build on any platform with a conforming
321 The last two codes listed are not actually ``return'ed'' by a function. They are placed in an integer (the caller must
322 provide the address of an integer it can store to) which the caller can access. To convert one of the three return codes
334 The basic ``multiple precision integer'' type is known as the ``mp\_int'' within LibTomMath. This data type is used to
335 organize all of the data required to manipulate the integer it represents. Within LibTomMath it has been prototyped
346 Where ``mp\_digit'' is a data type that represents individual digits of the integer. By default, an mp\_digit is the
385 represents the default integer which is zero. If the functions returns MP\_OKAY then the mp\_int is ready to be used
441 Certain algorithms require more than one large integer. In these instances it is ideal to initialize all of the mp\_int
595 the integer the mp\_int is meant to equal. The \textit{used} parameter dictates how many digits are significant, that is,
655 This will zero the contents of $a$ and make it represent an integer equal to the value of $b$. Note that this
1118 Simple integer negation can be performed with the following.
1128 Simple integer absolutes can be performed with the following.
1137 \section{Integer Division and Remainder}
1138 To perform a complete and general integer division with remainder use the following function.
1152 A full signed integer multiplication can be performed with the following.
1741 This will return the number of bytes (octets) required to store the unsigned copy of the integer $a$.
1748 requires. It does not store the sign of the integer.
1755 integer $a$ will always be positive.