Lines Matching refs:hex
214 static int hex(unsigned char ch);
222 static int hex(unsigned char ch) in hex() function
314 xmitcsum = hex(ch) << 4; in gdbstub_recv_packet()
319 xmitcsum |= hex(ch); in gdbstub_recv_packet()
413 ch = hex(**ptr); in hexToInt()
734 ch.b[0] = hex(*buf++) << 4; in hex2mem()
735 ch.b[0] |= hex(*buf++); in hex2mem()
743 ch.b[0] = hex(*buf++) << 4; in hex2mem()
744 ch.b[0] |= hex(*buf++); in hex2mem()
745 ch.b[1] = hex(*buf++) << 4; in hex2mem()
746 ch.b[1] |= hex(*buf++); in hex2mem()
754 ch.b[0] = hex(*buf++) << 4; in hex2mem()
755 ch.b[0] |= hex(*buf++); in hex2mem()
756 ch.b[1] = hex(*buf++) << 4; in hex2mem()
757 ch.b[1] |= hex(*buf++); in hex2mem()
758 ch.b[2] = hex(*buf++) << 4; in hex2mem()
759 ch.b[2] |= hex(*buf++); in hex2mem()
760 ch.b[3] = hex(*buf++) << 4; in hex2mem()
761 ch.b[3] |= hex(*buf++); in hex2mem()
769 ch.b[0] = hex(*buf++) << 4; in hex2mem()
770 ch.b[0] |= hex(*buf++); in hex2mem()
771 ch.b[1] = hex(*buf++) << 4; in hex2mem()
772 ch.b[1] |= hex(*buf++); in hex2mem()
780 ch.b[0] = hex(*buf++) << 4; in hex2mem()
781 ch.b[0] |= hex(*buf++); in hex2mem()