Lines Matching refs:t
16 register BN_ULONG *ap, *rp, t, c; in BN_lshift1() local
35 t = *(ap++); in BN_lshift1()
36 *(rp++) = ((t << 1) | c) & BN_MASK2; in BN_lshift1()
37 c = t >> (BN_BITS2 - 1); in BN_lshift1()
47 BN_ULONG *ap, *rp, t, c; in BN_rshift1() local
66 t = ap[--i]; in BN_rshift1()
67 rp[i] = t >> 1; in BN_rshift1()
68 c = t << (BN_BITS2 - 1); in BN_rshift1()
69 r->top -= (t == 1); in BN_rshift1()
71 t = ap[--i]; in BN_rshift1()
72 rp[i] = ((t >> 1) & BN_MASK2) | c; in BN_rshift1()
73 c = t << (BN_BITS2 - 1); in BN_rshift1()
108 BN_ULONG *t, *f; in bn_lshift_fixed_top() local
127 t = &(r->d[nw]); 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()
135 t[0] = (l << lb) & BN_MASK2; in bn_lshift_fixed_top()
141 memset(r->d, 0, sizeof(*t) * nw); in bn_lshift_fixed_top()
180 BN_ULONG *t, *f; in bn_rshift_fixed_top() local
201 t = &(r->d[0]); 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()