Merge pull request #13 from radii/constify-ge_precomp
constify ge_precomp
This commit is contained in:
commit
7fa6712ef5
2
src/ge.c
2
src/ge.c
@ -346,7 +346,7 @@ static unsigned char negative(signed char b) {
|
|||||||
return (unsigned char) x;
|
return (unsigned char) x;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cmov(ge_precomp *t, ge_precomp *u, unsigned char b) {
|
static void cmov(ge_precomp *t, const ge_precomp *u, unsigned char b) {
|
||||||
fe_cmov(t->yplusx, u->yplusx, b);
|
fe_cmov(t->yplusx, u->yplusx, b);
|
||||||
fe_cmov(t->yminusx, u->yminusx, b);
|
fe_cmov(t->yminusx, u->yminusx, b);
|
||||||
fe_cmov(t->xy2d, u->xy2d, b);
|
fe_cmov(t->xy2d, u->xy2d, b);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
static ge_precomp Bi[8] = {
|
static const ge_precomp Bi[8] = {
|
||||||
{
|
{
|
||||||
{ 25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605 },
|
{ 25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605 },
|
||||||
{ -12545711, 934262, -2722910, 3049990, -727428, 9406986, 12720692, 5043384, 19500929, -15469378 },
|
{ -12545711, 934262, -2722910, 3049990, -727428, 9406986, 12720692, 5043384, 19500929, -15469378 },
|
||||||
@ -43,7 +43,7 @@ static ge_precomp Bi[8] = {
|
|||||||
|
|
||||||
|
|
||||||
/* base[i][j] = (j+1)*256^i*B */
|
/* base[i][j] = (j+1)*256^i*B */
|
||||||
static ge_precomp base[32][8] = {
|
static const ge_precomp base[32][8] = {
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
{ 25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605 },
|
{ 25967493, -14356035, 29566456, 3660896, -12694345, 4014787, 27544626, -11754271, -6079156, 2047605 },
|
||||||
|
Loading…
Reference in New Issue
Block a user