Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_tlsv12/sys/src/cmd/unix/drawterm/libmp/mpmod.c – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#include "os.h"
2
#include <mp.h>
3
#include "dat.h"
4
 
5
// remainder = b mod m
6
//
7
// knuth, vol 2, pp 398-400
8
 
9
void
10
mpmod(mpint *b, mpint *m, mpint *remainder)
11
{
12
	mpdiv(b, m, nil, remainder);
13
	if(remainder->sign < 0)
14
		mpadd(m, remainder, remainder);
15
}