Code Review
/
trex.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
0d8a05915d306b050dbf98e4ab5cbb915816d6e0
[trex.git]
/
1
#include "ge.h"
2
3
/*
4
r = 2 * p
5
*/
6
7
void ge_p3_dbl(ge_p1p1 *r,const ge_p3 *p)
8
{
9
ge_p2 q;
10
ge_p3_to_p2(&q,p);
11
ge_p2_dbl(r,&q);
12
}