diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-04-22 19:54:20 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-04-22 19:54:20 -0700 |
commit | 13ea02f16c9cdb87c74dd35c63e25ffa96718483 (patch) | |
tree | 532ee1fa5f6ca3d4bd6be452bfb2783694e9c103 /mpi/mpi.c | |
parent | db10bad508a85f1bbd86130210bbee93ff1b6f4c (diff) | |
download | txr-13ea02f16c9cdb87c74dd35c63e25ffa96718483.tar.gz txr-13ea02f16c9cdb87c74dd35c63e25ffa96718483.tar.bz2 txr-13ea02f16c9cdb87c74dd35c63e25ffa96718483.zip |
add-mp-hash patch
* mpi/mpi.c (mp_hash): New function.
* mpi/mpi.c (mp_hash): Declared.
Diffstat (limited to 'mpi/mpi.c')
-rw-r--r-- | mpi/mpi.c | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -1958,6 +1958,34 @@ int mp_iseven(mp_int *a) /* }}} */ +unsigned long mp_hash(mp_int *a) +{ +#if SIZEOF_LONG > MP_DIGIT_SIZE + unsigned long hash; + int ix; + + if (USED(a) >= 2 * SIZEOF_LONG / MP_DIGIT_SIZE) { + unsigned long omega = 0; + unsigned long alpha = 0; + for (ix = 0; ix < SIZEOF_LONG / MP_DIGIT_SIZE; ix++) + omega = (omega << MP_DIGIT_BIT) | DIGIT(a, ix); + for (ix = USED(a) - SIZEOF_LONG / MP_DIGIT_SIZE; ix < USED(a); ix++) + alpha = (alpha << MP_DIGIT_BIT) | DIGIT(a, ix); + hash = alpha + omega; + } else { + hash = 0; + + for (ix = 0; ix < USED(a); ix++) + hash = (hash << MP_DIGIT_BIT) | DIGIT(a, ix); + } +#else + mp_digit omega = DIGIT(a, 0); + mp_digit alpha = DIGIT(a, USED(a) - 1); + unsigned long hash = alpha + omega; +#endif + return SIGN(a) == MP_NEG ? ~hash : hash; +} + /*------------------------------------------------------------------------*/ /* {{{ Number theoretic functions */ |