Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/bignum/
H A Dbignumimpl.c1390 BIG_CHUNK_TYPE cy, cy1, retcy, dlow, dhigh; in big_mul_add_vec() local
1394 dlow = digit & BIG_CHUNK_LOWHALFBITS; in big_mul_add_vec()
1398 dlow * (a[i] & BIG_CHUNK_LOWHALFBITS) + in big_mul_add_vec()
1401 dlow * (a[i] >> (BIG_CHUNK_SIZE / 2)) + in big_mul_add_vec()
1476 uint32_t cy, cy1, retcy, dlow, dhigh; in big_mul_add_vec() local
1480 dlow = digit & 0xffff; in big_mul_add_vec()
1483 cy = (cy1 >> 16) + dlow * (a[i] & 0xffff) + (r[i] & 0xffff); in big_mul_add_vec()
1484 cy1 = (cy >> 16) + dlow * (a[i]>>16) + (r[i] >> 16); in big_mul_add_vec()