Lines Matching refs:hshift
42 bitcnt_t lshift, hshift; in nn_lshift_fixedlen() local
51 hshift = cnt % WORD_BITS; in nn_lshift_fixedlen()
52 lshift = (bitcnt_t)(WORD_BITS - hshift); in nn_lshift_fixedlen()
64 hipart = WLSHIFT(in->val[ipos], hshift); in nn_lshift_fixedlen()
96 bitcnt_t lshift, hshift, blen; in nn_lshift() local
115 hshift = cnt % WORD_BITS; in nn_lshift()
116 lshift = (bitcnt_t)(WORD_BITS - hshift); in nn_lshift()
128 hipart = WLSHIFT(in->val[ipos], hshift); in nn_lshift()
160 bitcnt_t lshift, hshift; in nn_rshift_fixedlen() local
170 hshift = (bitcnt_t)(WORD_BITS - lshift); in nn_rshift_fixedlen()
182 hipart = WLSHIFT(in->val[ipos], hshift); in nn_rshift_fixedlen()
214 bitcnt_t lshift, hshift; in nn_rshift() local
227 hshift = (bitcnt_t)(WORD_BITS - lshift); in nn_rshift()
249 hipart = WLSHIFT(in->val[ipos], hshift); in nn_rshift()