Home | History | Annotate | Download | only in IR

Lines Matching refs:nibble

858     // Bit position, in the current word, of the next nibble to print.
870 unsigned int nibble = (word>>shiftcount) & 15;
871 if (nibble < 10)
872 Out << (unsigned char)(nibble + '0');
874 Out << (unsigned char)(nibble - 10 + 'A');
900 unsigned int nibble = (word>>shiftcount) & 15;
901 if (nibble < 10)
902 Out << (unsigned char)(nibble + '0');
904 Out << (unsigned char)(nibble - 10 + 'A');