Lines Matching refs:rb
107 unsigned int lb, rb; in bn_lshift_fixed_top() local
122 rb = BN_BITS2 - lb; in bn_lshift_fixed_top()
123 rb %= BN_BITS2; /* say no to undefined behaviour */ in bn_lshift_fixed_top()
124 rmask = (BN_ULONG)0 - rb; /* rmask = 0 - (rb != 0) */ in bn_lshift_fixed_top()
129 t[a->top] = (l >> rb) & rmask; in bn_lshift_fixed_top()
133 t[i] = (m | ((l >> rb) & rmask)) & BN_MASK2; in bn_lshift_fixed_top()
179 unsigned int lb, rb; in bn_rshift_fixed_top() local
192 rb = (unsigned int)n % BN_BITS2; in bn_rshift_fixed_top()
193 lb = BN_BITS2 - rb; in bn_rshift_fixed_top()
206 t[i] = (l >> rb) | ((m << lb) & mask); in bn_rshift_fixed_top()
209 t[i] = l >> rb; in bn_rshift_fixed_top()