Home | History | Annotate | Download | only in src

Lines Matching refs:L_tmp

36 	Word32 i, L_tmp;
42 L_tmp = L_deposit_h(x[i]);
43 L_tmp -= (x[i - 1] * mu)<<1;
44 x[i] = (L_tmp + 0x8000)>>16;
47 L_tmp = L_deposit_h(x[0]);
48 L_tmp -= ((*mem) * mu)<<1;
49 x[0] = (L_tmp + 0x8000)>>16;
65 Word32 i, L_tmp;
71 L_tmp = L_deposit_h(x[i]);
72 L_tmp -= (x[i - 1] * mu)<<1;
73 L_tmp = (L_tmp << 1);
74 x[i] = (L_tmp + 0x8000)>>16;
77 L_tmp = L_deposit_h(x[0]);
78 L_tmp -= ((*mem) * mu)<<1;
79 L_tmp = (L_tmp << 1);
80 x[0] = (L_tmp + 0x8000)>>16;