commit | f00fa2417b3e1252b1a761f88731af03afff4407 | [log] [tgz] |
---|---|---|
author | Nicolai Stange <nicstange@gmail.com> | Tue Mar 22 13:12:40 2016 +0100 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Tue Apr 05 20:35:49 2016 +0800 |
tree | 1ba46a98908d23e0c95eb52b5e5a52173b7d06b9 | |
parent | d755290689646fa66cc4830ca55569f2c9863666 [diff] |
lib/mpi: mpi_read_buffer(): optimize skipping of leading zero limbs Currently, if the number of leading zeros is greater than fits into a complete limb, mpi_read_buffer() skips them by iterating over them limb-wise. Instead of skipping the high order zero limbs within the loop as shown above, adjust the copying loop's bounds. Signed-off-by: Nicolai Stange <nicstange@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>