Home
last modified time | relevance | path

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

/netbsd-src/external/lgpl3/gmp/dist/rand/
H A Drandmt.c284 gmp_uint_least32_t bitpool_h = 0; in __gmp_randget_mt() local
309 bitpool_h = y; in __gmp_randget_mt()
310 bitpool_l |= (bitpool_h << bits_in_pool) & 0xFFFFFFFF; in __gmp_randget_mt()
312 bitpool_h = 0; in __gmp_randget_mt()
314 bitpool_h >>= 32 - bits_in_pool; in __gmp_randget_mt()
320 bitpool_l = bitpool_h; in __gmp_randget_mt()
332 bitpool_h = y; in __gmp_randget_mt()
333 bitpool_l |= (bitpool_h << bits_in_pool) & 0xFFFFFFFF; in __gmp_randget_mt()
335 bitpool_h = 0; in __gmp_randget_mt()
337 bitpool_h >>= 32 - bits_in_pool; in __gmp_randget_mt()
[all …]