Home
last modified time | relevance | path

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

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