Searched defs:rwords (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/bignum/
H A Dbignumimpl.c3163 size_t rwords, rbytes; local
3173 rwords = BITLEN2BIGNUMLEN(rlen);
3174 rbytes = rwords * sizeof (BIG_CHUNK_TYPE);
3175 if (big_extend(r, rwords) != BIG_OK)
3178 r->len = rwords;
3180 r->len = (uint32_t)rwords;
3186 r->value[rwords - 1] |= BIG_CHUNK_HIGHBIT;
3193 r->value[rwords - 1] >>= (BIG_CHUNK_SIZE - shift);

Completed in 72 milliseconds