Home
last modified time | relevance | path

Searched refs:BIG_CHUNK_SIZE (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/common/bignum/
H A Dbignumimpl.c400 b = BIG_CHUNK_SIZE; in big_bitlength()
407 return (l * BIG_CHUNK_SIZE + b); in big_bitlength()
778 cy1 = a[i] << (BIG_CHUNK_SIZE - 1); in big_half_pos()
818 cy1 = a[i] >> (BIG_CHUNK_SIZE - 1); in big_double()
842 rem = ((rem << (BIG_CHUNK_SIZE / 2)) | in big_modhalf_pos()
843 (aa->value[i] >> (BIG_CHUNK_SIZE / 2))) % b; in big_modhalf_pos()
844 rem = ((rem << (BIG_CHUNK_SIZE / 2)) | in big_modhalf_pos()
918 t2 = (ai >> (BIG_CHUNK_SIZE / 2)) * b + in big_mulhalf_low()
919 (t1 >> (BIG_CHUNK_SIZE / 2)); in big_mulhalf_low()
921 (t2 << (BIG_CHUNK_SIZE / 2)); in big_mulhalf_low()
[all …]
H A Dbignum.h48 #define BIG_CHUNK_SIZE 32 macro
57 #define BIG_CHUNK_SIZE 64
67 ((((x) - 1) / BIG_CHUNK_SIZE) + 1) : 0)
71 #define BIGNUM_WORDSIZE (BIG_CHUNK_SIZE / BITSINBYTE) /* word size in bytes */
178 #if (BIG_CHUNK_SIZE != 32)