Home | History | Annotate | Download | only in opcodes

Lines Matching refs:bitno

57   unsigned int bitno;
189 node->bitno = -1;
207 Store the bit number in BITTREE->BITNO if the division succeeds. If unable
228 unsigned int bitno;
286 bitno = 0;
287 while (!(mask_and & (1 << bitno)))
288 ++bitno;
289 bitmask = (1 << bitno);
292 printf ("use bit %d\n", bitno);
295 bittree->bitno = bitno;
323 /* If BITNO can NOT divide the opcode group, try next bit. */
416 indented_print (indent, "if (((word >> %d) & 0x1) == 0)\n", bittree->bitno);
418 pattern[bittree->bitno] = '0';
423 pattern[bittree->bitno] = '1';
426 pattern[bittree->bitno] = 'x';