Lines Matching refs:thisnib

78 		   int thisnib,  in extract_immediate()  argument
88 *cst = thisnib & 3; in extract_immediate()
359 int thisnib = data[len / 2]; in bfd_h8_disassemble() local
362 thisnib = (len & 1) ? (thisnib & 0xf) : ((thisnib / 16) & 0xf); in bfd_h8_disassemble()
368 if (looking_for != thisnib) in bfd_h8_disassemble()
375 if (!((thisnib & 0x8) != 0)) in bfd_h8_disassemble()
379 thisnib &= 0x7; in bfd_h8_disassemble()
383 if (!((thisnib & 0x8) == 0)) in bfd_h8_disassemble()
391 if (!((thisnib & 0x4) != 0)) in bfd_h8_disassemble()
395 thisnib &= 0xb; in bfd_h8_disassemble()
399 if (!((thisnib & 0x4) == 0)) in bfd_h8_disassemble()
406 if (!((thisnib & 0x2) != 0)) in bfd_h8_disassemble()
410 thisnib &= 0xd; in bfd_h8_disassemble()
414 if (!((thisnib & 0x2) == 0)) in bfd_h8_disassemble()
422 if (!((thisnib & 0x1) != 0)) in bfd_h8_disassemble()
426 thisnib &= 0xe; in bfd_h8_disassemble()
430 if (!((thisnib & 0x1) == 0)) in bfd_h8_disassemble()
439 if (thisnib != 0) in bfd_h8_disassemble()
451 if ((looking_for & 7) != (thisnib & 7)) in bfd_h8_disassemble()
454 cst[opnr] = (thisnib & 0x8) ? 2 : 1; in bfd_h8_disassemble()
463 extract_immediate (stream, looking_for, thisnib, in bfd_h8_disassemble()
478 regno[opnr] = thisnib; in bfd_h8_disassemble()
482 thisnib &= 7; in bfd_h8_disassemble()
483 if (((looking_for & MODE) == CCR && (thisnib != C_CCR)) in bfd_h8_disassemble()
484 || ((looking_for & MODE) == EXR && (thisnib != C_EXR)) in bfd_h8_disassemble()
485 || ((looking_for & MODE) == MACH && (thisnib != C_MACH)) in bfd_h8_disassemble()
486 || ((looking_for & MODE) == MACL && (thisnib != C_MACL)) in bfd_h8_disassemble()
487 || ((looking_for & MODE) == VBR && (thisnib != C_VBR)) in bfd_h8_disassemble()
488 || ((looking_for & MODE) == SBR && (thisnib != C_SBR))) in bfd_h8_disassemble()
491 && (thisnib != C_CCR && thisnib != C_EXR)) in bfd_h8_disassemble()
493 && (thisnib != C_VBR && thisnib != C_SBR)) in bfd_h8_disassemble()
495 && (thisnib != C_MACH && thisnib != C_MACL))) in bfd_h8_disassemble()
498 && (thisnib != C_CCR && thisnib != C_EXR in bfd_h8_disassemble()
499 && thisnib != C_VBR && thisnib != C_SBR))) in bfd_h8_disassemble()
502 regno[opnr] = thisnib; in bfd_h8_disassemble()
511 cst[opnr] = thisnib; in bfd_h8_disassemble()
553 dispregno[opnr] = thisnib & 7; in bfd_h8_disassemble()
557 switch (thisnib) in bfd_h8_disassemble()
580 cst[opnr] = thisnib & 0x7; in bfd_h8_disassemble()
587 cst[opnr] = thisnib & 0x3; in bfd_h8_disassemble()
591 cst[opnr] = (thisnib == 3); in bfd_h8_disassemble()