Home | History | Annotate | Download | only in x86

Lines Matching defs:bitoff

145    UInt   n, bitoff, op;
158 bitoff = (random() % 1600) - 800;
162 case 0: c = btsl_mem(block, bitoff); break;
163 case 1: c = btrl_mem(block, bitoff); break;
164 case 2: c = btcl_mem(block, bitoff); break;
165 case 3: c = btl_mem(block, bitoff); break;
168 carrydep = c ? (rol1(carrydep) ^ bitoff) : carrydep;
188 bitoff = (random() % 100) - 50;
192 case 0: c = btsl_reg(reg, bitoff, &reg); break;
193 case 1: c = btrl_reg(reg, bitoff, &reg); break;
194 case 2: c = btcl_reg(reg, bitoff, &reg); break;
195 case 3: c = btl_reg(reg, bitoff, &reg); break;
198 carrydep = c ? (rol1(carrydep) ^ bitoff) : carrydep;